]> git.lizzy.rs Git - worldedit.git/commitdiff
document the //move change
authorKyle <kyle.kylina@gmail.com>
Mon, 10 Sep 2012 17:09:03 +0000 (10:09 -0700)
committerKyle <kyle.kylina@gmail.com>
Mon, 10 Sep 2012 17:09:03 +0000 (10:09 -0700)
README.md
functions.lua

index 00e9f56b721d4892c550aaa35b68a4b562666dec..f76b9bd3b2430d76e806560ccc72dbed80040b28 100644 (file)
--- a/README.md
+++ b/README.md
@@ -129,7 +129,7 @@ Copy the current WorldEdit region along the x/y/z/? axis by <amount> nodes.
 
 ### //move x/y/z/? <amount>
 
-Move the current WorldEdit region along the x/y/z/? axis by <amount> nodes.
+Move the current WorldEdit positions and region along the x/y/z/? axis by <amount> nodes.
 
     //move x 15
     //move y -7
index 00f73fc16b0e9e55e40f7041aca4498d3049e759..ed205918d8bbfa261c4e9a0347594c2b1846864c 100644 (file)
@@ -309,7 +309,7 @@ worldedit.copy = function(pos1, pos2, axis, amount)
        return worldedit.volume(pos1, pos2)\r
 end\r
 \r
---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\r
+--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\r
 worldedit.move = function(pos1, pos2, axis, amount)\r
        local pos1, pos2 = worldedit.sort_pos(pos1, pos2)\r
        local env = minetest.env\r