From ddac8ac66895bc3a91edbd943d88b75e1a23ecd6 Mon Sep 17 00:00:00 2001 From: Helg2 <93882977+Helg2@users.noreply.github.com> Date: Mon, 10 Jul 2023 11:40:06 +0300 Subject: [PATCH] Fixes few phobias not being scared of mobs. (#76659) ## About The Pull Request Closes https://github.com/tgstation/tgstation/issues/76645 ## Why It's Good For The Game More reasons to ghost ## Changelog :cl: fix: snakes, security, spiders and skeletons phobias now properly react on mobs /:cl: --- code/_globalvars/phobias.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_globalvars/phobias.dm b/code/_globalvars/phobias.dm index c539618e567..46e21234f9c 100644 --- a/code/_globalvars/phobias.dm +++ b/code/_globalvars/phobias.dm @@ -78,11 +78,11 @@ GLOBAL_LIST_INIT(phobia_mobs, list( /mob/living/silicon/robot, /mob/living/simple_animal/bot, /mob/living/simple_animal/drone, + )), "security" = typecacheof(list(/mob/living/simple_animal/bot/secbot)), "spiders" = typecacheof(list(/mob/living/basic/giant_spider)), "skeletons" = typecacheof(list(/mob/living/simple_animal/hostile/skeleton)), "snakes" = typecacheof(list(/mob/living/simple_animal/hostile/retaliate/snake)), - )), "the supernatural" = typecacheof(list( /mob/dead/observer, /mob/living/simple_animal/bot/mulebot/paranormal,