diff options
author | Anthony Zhang <azhang9@gmail.com> | 2014-12-29 18:16:36 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2014-12-29 18:16:36 -0500 |
commit | 7f580611f564bc4d67c3b77fc4866b4afb2fb98a (patch) | |
tree | ff7d88e916c7543718e65441e78f66a27413c9a4 | |
parent | 47990685514ebdfe114977c33e08c20511f1f0a7 (diff) |
Fix some warnings.
-rw-r--r-- | worldedit/serialization.lua | 2 | ||||
-rw-r--r-- | worldedit_commands/init.lua | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/worldedit/serialization.lua b/worldedit/serialization.lua index e08699e..86b23ec 100644 --- a/worldedit/serialization.lua +++ b/worldedit/serialization.lua @@ -199,7 +199,7 @@ worldedit.allocate_with_nodes = function(origin_pos, nodes) local pos2x, pos2y, pos2z = -huge, -huge, -huge
local origin_x, origin_y, origin_z = origin_pos.x, origin_pos.y, origin_pos.z
for i, entry in ipairs(nodes) do
- x, y, z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z
+ local x, y, z = origin_x + entry.x, origin_y + entry.y, origin_z + entry.z
if x < pos1x then pos1x = x end
if y < pos1y then pos1y = y end
if z < pos1z then pos1z = z end
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 734150a..9daa809 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -13,7 +13,7 @@ if minetest.place_schematic then end
dofile(minetest.get_modpath("worldedit_commands") .. "/mark.lua")
-dofile(minetest.get_modpath("worldedit_commands") .. "/safe.lua")
+dofile(minetest.get_modpath("worldedit_commands") .. "/safe.lua"); safe_region = safe_region or function(callback) return callback end
local get_position = function(name) --position 1 retrieval function for when not using `safe_region`
local pos1 = worldedit.pos1[name]
@@ -828,7 +828,7 @@ minetest.register_chatcommand("/suppress", { local node = get_node(name, param)
local count = worldedit.suppress(worldedit.pos1[name], worldedit.pos2[name], node)
worldedit.player_notify(name, count .. " nodes suppressed")
- end, check_set),
+ end, check_region),
})
minetest.register_chatcommand("/highlight", {
@@ -839,7 +839,7 @@ minetest.register_chatcommand("/highlight", { local node = get_node(name, param)
local count = worldedit.highlight(worldedit.pos1[name], worldedit.pos2[name], node)
worldedit.player_notify(name, count .. " nodes highlighted")
- end, check_set),
+ end, check_region),
})
minetest.register_chatcommand("/restore", {
|