forked from minetest-mods/mesecons
Fix the commandblock's check for quiting the formspec
The submit button also sends a quit field.
This commit is contained in:
parent
e5896076fe
commit
041429c985
|
@ -79,7 +79,7 @@ local function after_place(pos, placer)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function receive_fields(pos, formname, fields, sender)
|
local function receive_fields(pos, formname, fields, sender)
|
||||||
if fields.quit then
|
if not fields.submit then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user