diff options
Diffstat (limited to 'worldedit')
-rw-r--r-- | worldedit/manipulations.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worldedit/manipulations.lua b/worldedit/manipulations.lua index 995619c..ee51561 100644 --- a/worldedit/manipulations.lua +++ b/worldedit/manipulations.lua @@ -301,7 +301,7 @@ function worldedit.stack(pos1, pos2, axis, count) local amount = 0
local copy = worldedit.copy
local i = 1
- function next_one()
+ local function next_one()
if i <= count then
i = i + 1
amount = amount + length
|