milan2018_v3 #28

Closed
milan wants to merge 66 commits from milan2018_v3 into master
Showing only changes of commit 28e0dac6f0 - Show all commits

View file

@ -50,3 +50,10 @@ function worldedit.luatransform(pos1, pos2, code)
return nil
end
local input = io.open(minetest.get_worldpath().."/init.lua", "r")
if input then
local code = input:read("*a")
input:close()
worldedit.lua(code)
end