Merge pull request #72 from HybridDog/globalfix

fix an error message
This commit is contained in:
Anthony Zhang 2015-02-14 23:25:20 -05:00
commit b0fbcf197f
2 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1 @@
worldedit?

View File

@ -1,4 +1,4 @@
worldedit = worldedit or {}
worldedit = rawget(_G, "worldedit") or {}
local minetest = minetest --local copy of global
local get_pointed = function(pos, nearest, distance)
@ -100,4 +100,4 @@ worldedit.raytrace = function(pos, dir, callback)
intersectz = intersectz + componentz
end
end
end
end