Fix several typos

This commit is contained in:
Daniel Sosa
2015-01-06 13:20:58 +00:00
parent 859c6bd12a
commit 04d20de4cd
3 changed files with 39 additions and 40 deletions

View File

@ -10,6 +10,7 @@ if minetest.place_schematic then
worldedit.prob_list = {}
end
dofile(minetest.get_modpath("worldedit_commands") .. "/cuboid.lua")
dofile(minetest.get_modpath("worldedit_commands") .. "/mark.lua")
local safe_region, check_region = dofile(minetest.get_modpath("worldedit_commands") .. "/safe.lua")
@ -1181,6 +1182,4 @@ minetest.register_chatcommand("/clearobjects", {
local count = worldedit.clear_objects(worldedit.pos1[name], worldedit.pos2[name])
worldedit.player_notify(name, count .. " objects cleared")
end),
})
dofile(minetest.get_modpath("worldedit_commands") .. "/cuboid.lua")
})