limit honey amount per hive

This commit is contained in:
TenPlus1 2018-08-16 16:18:27 +01:00
parent d5bc1b92f1
commit dedcddfdd6
1 changed files with 1 additions and 1 deletions

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