diff options
author | Daniel Sosa <sosa.daniel23@gmail.com> | 2015-01-06 13:20:58 +0000 |
---|---|---|
committer | Daniel Sosa <sosa.daniel23@gmail.com> | 2016-07-03 21:44:02 -0500 |
commit | 04d20de4cd9bc55fc37889ee53fd827e5ebcf9a0 (patch) | |
tree | a642a75cc0006ea356463c3faeb625d28344930d /worldedit_commands/init.lua | |
parent | 859c6bd12a45a8c9c5ad25675b2916f39937e261 (diff) |
Fix several typos
Diffstat (limited to 'worldedit_commands/init.lua')
-rw-r--r-- | worldedit_commands/init.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 21a6af3..eedc372 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -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")
+})
\ No newline at end of file |