Skip to content

Commit 70c24c9

Browse files
committedAug 15, 2014
Fix #57 (thanks Zeno-!).
1 parent 18efe50 commit 70c24c9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎worldedit_commands/init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,7 @@ minetest.register_chatcommand("/stack", {
616616
local found, _, axis, repetitions = param:find("^([xyz%?])%s+([+-]?%d+)$")
617617
if found == nil then
618618
worldedit.player_notify(name, "invalid usage: " .. param)
619+
return
619620
end
620621
local count = check_region(name, param)
621622
if count then return (tonumber(repetitions) + 1) * count end

0 commit comments

Comments
 (0)
Please sign in to comment.