minetest_x_bows/quiver.lua

6 lines
177 B
Lua
Raw Normal View History

2022-10-16 15:02:04 -05:00
minetest.register_on_player_receive_fields(function(player, formname, fields)
if player and fields.quit then
2022-10-20 08:13:35 -05:00
XBowsQuiver:close_quiver(player, formname)
2022-10-16 15:02:04 -05:00
end
end)