From c62e242e8e899347cc01b300d414197aa1fb9ed4 Mon Sep 17 00:00:00 2001 From: Seris02 Date: Sat, 18 Feb 2023 10:33:30 +0800 Subject: [PATCH] stops swoopies attacking prommies and proteans --- .../modules/mob/living/simple_mob/subtypes/vore/swoopie.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm index ba1f7d15a4..87917d6344 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm @@ -20,6 +20,13 @@ adminbus_trash = TRUE //You know what, sure whatever. It's not like anyone's gonna be taking this bird on unga trips to be their gamer backpack, which kinda was the main reason for the trash eater restrictions in the first place anyway. faction = "neutral" say_list_type = /datum/say_list/swoopie + var/static/list/crew_creatures = list( /mob/living/simple_mob/protean_blob, + /mob/living/simple_mob/slime/promethean) + +/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/IIsAlly(mob/living/L) + . = ..() + if(!.) // Outside the faction and not in friends, are they crew + return L?.type in crew_creatures /mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/init_vore() if(!voremob_loaded)