diff options
author | sfan5 <sfan5@live.de> | 2017-11-07 14:19:57 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2017-11-07 14:19:57 +0100 |
commit | 415000e79744200badfad4a4b5228a8625dd5a3e (patch) | |
tree | 7fc4c3b811f207445ba3996dd13c4a0395401c8c /worldedit | |
parent | 7b1deb1b61bc28b3e105833788eb07dfb1326984 (diff) |
Fix a few assignments to undeclared globals
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
|