1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2024-12-25 18:20:38 +01:00

Add completion chat message to //expand and //contract

This commit is contained in:
sfan5 2016-07-04 19:53:12 +02:00
parent 0b68b2aec6
commit 2aed498849

View File

@ -129,7 +129,7 @@ minetest.register_chatcommand("/shift", {
assert(worldedit.cuboid_shift(name, axis, amount * dir)) assert(worldedit.cuboid_shift(name, axis, amount * dir))
worldedit.marker_update(name) worldedit.marker_update(name)
return true, "region shifted by " .. amount .. " nodes" return true, "Region shifted by " .. amount .. " nodes"
end, end,
} }
) )
@ -183,6 +183,7 @@ minetest.register_chatcommand("/expand", {
worldedit.cuboid_linear_expand(name, axis, dir, amount) worldedit.cuboid_linear_expand(name, axis, dir, amount)
worldedit.cuboid_linear_expand(name, axis, -dir, rev_amount) worldedit.cuboid_linear_expand(name, axis, -dir, rev_amount)
worldedit.marker_update(name) worldedit.marker_update(name)
return true, "Region expanded by " .. (amount + rev_amount) .. " nodes"
end, end,
} }
) )
@ -236,6 +237,7 @@ minetest.register_chatcommand("/contract", {
worldedit.cuboid_linear_expand(name, axis, dir, -amount) worldedit.cuboid_linear_expand(name, axis, dir, -amount)
worldedit.cuboid_linear_expand(name, axis, -dir, -rev_amount) worldedit.cuboid_linear_expand(name, axis, -dir, -rev_amount)
worldedit.marker_update(name) worldedit.marker_update(name)
return true, "Region contracted by " .. (amount + rev_amount) .. " nodes"
end, end,
} }
) )