Fix //move again

This commit is contained in:
Sfan5 2013-05-20 20:48:12 +02:00
parent d7ae19b7b8
commit a1dcc43210
1 changed files with 2 additions and 5 deletions

View File

@ -560,11 +560,8 @@ minetest.register_chatcommand("/move", {
amount = amount * sign
end
local tenv = minetest.env
if worldedit.ENABLE_QUEUE then
tenv = worldedit.quene_aliasenv
end
local count = worldedit.move(pos1, pos2, axis, tonumber(amount), tenv)
--Do NOT use the queue here, it'll mess it up
local count = worldedit.move(pos1, pos2, axis, tonumber(amount))
pos1[axis] = pos1[axis] + amount
pos2[axis] = pos2[axis] + amount