1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2024-11-13 06:00:19 +01:00

allow multiple //moves

This commit is contained in:
Kyle 2012-09-09 21:44:30 -07:00
parent a429e104a2
commit 17c1e3887c

View File

@ -323,6 +323,12 @@ minetest.register_chatcommand("/move", {
end
local count = worldedit.move(pos1, pos2, axis, tonumber(amount))
worldedit.pos1[name][axis] = worldedit.pos1[name][axis] + amount
worldedit.pos2[name][axis] = worldedit.pos2[name][axis] + amount
worldedit.mark_pos1(name)
worldedit.mark_pos2(name)
minetest.chat_send_player(name, count .. " nodes moved")
end,
})