1
0
derivado de nalc/nalc_game

Fix possible stacking of books in bookshelf

Original author: @MT-Modder
Este cometimento está contido em:
PilzAdam
2014-12-06 11:43:07 +01:00
ascendente 31edc5a9ff
cometimento fd34872de8

Ver ficheiro

@@ -407,8 +407,9 @@ minetest.register_node("default:bookshelf", {
allow_metadata_inventory_put = function(pos, listname, index, stack, player) allow_metadata_inventory_put = function(pos, listname, index, stack, player)
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)
if listname == "books" then if listname == "books" then
if stack:get_name() == "default:book" then if stack:get_name() == "default:book" and to_stack:is_empty() then
return 1 return 1
else else
return 0 return 0