Change field receipt handling to work properly with Minetest 0.4.8.

This commit is contained in:
Uberi
2013-12-18 14:54:46 -05:00
parent 85f2f3f742
commit e8d31c3e5a
4 changed files with 16 additions and 1 deletions

View File

@ -92,6 +92,9 @@ local after_place = function(pos, placer)
end
local receive_fields = function(pos, formname, fields, sender)
if fields.quit then
return
end
local meta = minetest.get_meta(pos)
if fields.nearest then
initialize_data(meta, "@nearest", fields.command, fields.param)