1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-01-23 16:30:19 +01:00

Merge pull request #17 from Gael-de-Sailly/books

Store any book in bookshelves, not only default:book
This commit is contained in:
LeMagnesium 2015-02-09 18:41:27 +01:00
commit 6bd160571b

View File

@ -584,15 +584,12 @@ minetest.register_node("default:bookshelf", {
local meta = minetest.get_meta(pos) local meta = minetest.get_meta(pos)
local inv = meta:get_inventory() local inv = meta:get_inventory()
local to_stack = inv:get_stack(listname, index) local to_stack = inv:get_stack(listname, index)
if listname == "books" and to_stack:is_empty() then if listname == "books" and to_stack:is_empty()
if stack:get_name() == "default:book" then and minetest.get_item_group(stack:get_name(), "book") ~= 0 then
return 1 return 1
else else
return 0 return 0
end end
else
return 0
end
end, end,
allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player) allow_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)