1
0
mirror of https://codeberg.org/tenplus1/mobs_animal.git synced 2024-11-12 22:00:19 +01:00

limit honey amount per hive

This commit is contained in:
TenPlus1 2018-08-16 16:18:27 +01:00
parent d5bc1b92f1
commit dedcddfdd6

View File

@ -184,7 +184,7 @@ minetest.register_abm({
local honey = inv:get_stack("beehive", 1):get_count()
-- is hive full?
if honey > 19 then
if honey > 11 then
return
end