corrections

master
A. Demant 2018-11-23 06:27:41 +01:00
parent fd5299a847
commit 9bf387c4cd
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ basic_functions.parse_tree=function(mat,ind,val)
if mat[first] == nil then
mat[first]={}
end
mat[first]=minerdream.parse_tree(mat[first],second,val)
mat[first]=basic_functions.parse_tree(mat[first],second,val)
end
return(mat)
end

View File

@ -1,5 +1,5 @@
basic_functions = {}
basic_functions.path = minetest.get_modpath("minerdream")
basic_functions.path = minetest.get_modpath("basic_functions")
basic_functions.modname = minetest.get_current_modname()
dofile(basic_functions.path .. "/functions.lua")