Fix delete items 4-9 after closing crafting table

This commit is contained in:
Wuzzy 2017-01-09 03:29:52 +01:00
parent 4a0efa36fd
commit e5e74cca70
1 changed files with 1 additions and 1 deletions

View File

@ -130,8 +130,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
local size = string.len(formspec)
local marker = string.sub(formspec,size-2)
if marker == "inv" or marker == "wob" then
set_inventory(player)
drop_fields(player,"craft")
set_inventory(player)
end
end
end)