summaryrefslogtreecommitdiff
path: root/functions.lua
diff options
context:
space:
mode:
authorKyle <kyle.kylina@gmail.com>2012-09-10 10:09:03 -0700
committerKyle <kyle.kylina@gmail.com>2012-09-10 10:09:03 -0700
commit93100a20be1cd2109c62b053ba3e22cb9f999983 (patch)
treee35b1a60323650cf9df36a6e20f4a6c87ddc00ee /functions.lua
parent17c1e3887c7af21983ec148d965857829f62e452 (diff)
document the //move change
Diffstat (limited to 'functions.lua')
-rw-r--r--functions.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.lua b/functions.lua
index 00f73fc..ed20591 100644
--- a/functions.lua
+++ b/functions.lua
@@ -309,7 +309,7 @@ worldedit.copy = function(pos1, pos2, axis, amount)
return worldedit.volume(pos1, pos2)
end
---moves the region defined by positions `pos1` and `pos2` along the `axis` axis ("x" or "y" or "z") by `amount` nodes, returning the number of nodes moved
+--moves positions `pos1` and `pos2` and the region defined by them along the `axis` axis ("x" or "y" or "z") by `amount` nodes, returning the number of nodes moved
worldedit.move = function(pos1, pos2, axis, amount)
local pos1, pos2 = worldedit.sort_pos(pos1, pos2)
local env = minetest.env