diff --git a/mobs/cat.lua b/mobs/cat.lua index 644f8ab..e5ffb06 100644 --- a/mobs/cat.lua +++ b/mobs/cat.lua @@ -81,6 +81,9 @@ creatura.register_mob("animalia:cat", { -- Behavior Parameters is_skittish_mob = true, + attack_list = { + "animalia:rat" + }, -- Animalia Props flee_puncher = true, diff --git a/mobs/owl.lua b/mobs/owl.lua index c30be37..fdd925c 100644 --- a/mobs/owl.lua +++ b/mobs/owl.lua @@ -69,6 +69,9 @@ creatura.register_mob("animalia:owl", { catch_with_net = true, catch_with_lasso = false, roost_action = animalia.action_roost, + attack_list = { + "animalia:rat" + }, -- Functions on_eat_drop = function(self) @@ -166,4 +169,4 @@ creatura.register_mob("animalia:owl", { creatura.register_spawn_item("animalia:owl", { col1 = "412918", col2 = "735b46" -}) \ No newline at end of file +}) diff --git a/mod.conf b/mod.conf index 5224901..22b6abf 100644 --- a/mod.conf +++ b/mod.conf @@ -1,6 +1,6 @@ name = animalia depends = creatura optional_depends = default, mcl_player, farming, 3d_armor -description = Adds unique and consistantly designed Animals +description = Adds unique and consistently designed Animals title = Animalia author = ElCeejo