1
0
mirror of https://github.com/minetest-mods/mesecons.git synced 2025-07-05 09:00:22 +02:00

Merge pull request #168 from ShadowNinja/fix-commandblock-quit

Fix the commandblock's check for quiting the formspec
This commit is contained in:
Anthony Zhang
2014-07-12 16:39:06 -04:00

@ -79,7 +79,7 @@ local function after_place(pos, placer)
end
local function receive_fields(pos, formname, fields, sender)
if fields.quit then
if not fields.submit then
return
end
local meta = minetest.get_meta(pos)