diff options
Diffstat (limited to 'worldedit_commands/init.lua')
-rw-r--r-- | worldedit_commands/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 93e594a..734150a 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -641,7 +641,7 @@ minetest.register_chatcommand("/stack2", { end
repetitions = tonumber(repetitions)
- local x, y, z = incs:match("([+-]?%d+) ([+-]%d+) ([+-]%d+)")
+ local x, y, z = incs:match("([+-]?%d+) ([+-]?%d+) ([+-]?%d+)")
if x == nil then
worldedit.player_notify(name, "invalid increments: " .. param)
return
|