From 59d5dbab8595642e31d7d2afc428fd0ff345fb0c Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Sat, 9 May 2020 20:28:11 +0100 Subject: [PATCH] beehives no longer suffocate bees --- bee.lua | 2 +- cow.lua | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bee.lua b/bee.lua index 02af4bc..c642a20 100644 --- a/bee.lua +++ b/bee.lua @@ -79,7 +79,7 @@ minetest.register_node(":mobs:beehive", { paramtype = "light", sunlight_propagates = true, walkable = true, - groups = {oddly_breakable_by_hand = 3, flammable = 1}, + groups = {oddly_breakable_by_hand = 3, flammable = 1, disable_suffocation = 1}, sounds = default.node_sound_defaults(), on_construct = function(pos) diff --git a/cow.lua b/cow.lua index dfd6fe8..b8ff87f 100644 --- a/cow.lua +++ b/cow.lua @@ -65,6 +65,7 @@ mobs:register_mob("mobs_animal:cow", { {"group:grass", "air", 0}, {"default:dirt_with_grass", "default:dirt", -1} }, +-- stay_near = {{"farming:straw", "group:grass"}, 10}, fear_height = 2, on_rightclick = function(self, clicker)