1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-12-22 23:10:17 +01:00

Update bookshelf infotext on put and take inv actions

This commit is contained in:
Lars Mueller 2023-06-06 14:10:37 +02:00 committed by Lars Müller
parent 16b6bdde0a
commit cd6ea53a52

View File

@ -2549,6 +2549,12 @@ local default_bookshelf_def = {
end
return 0
end,
on_metadata_inventory_put = function(pos)
update_bookshelf(pos)
end,
on_metadata_inventory_take = function(pos)
update_bookshelf(pos)
end,
on_blast = function(pos)
local drops = {}
default.get_inventory_drops(pos, "books", drops)