From 94b76aead91bfcef156b55c4cc0bea345e9b26bc Mon Sep 17 00:00:00 2001 From: Kyep Date: Mon, 28 Jan 2019 22:51:51 -0800 Subject: [PATCH] AOE fix, desc update --- code/modules/mob/living/simple_animal/hostile/hellhound.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/hellhound.dm b/code/modules/mob/living/simple_animal/hostile/hellhound.dm index 65a2391acb1..450f6767892 100644 --- a/code/modules/mob/living/simple_animal/hostile/hellhound.dm +++ b/code/modules/mob/living/simple_animal/hostile/hellhound.dm @@ -2,7 +2,7 @@ /mob/living/simple_animal/hostile/hellhound // Sprites by FoS: http://nanotrasen.se/phpBB3/memberlist.php?mode=viewprofile&u=386 name = "Lesser Hellhound" - desc = "A horrifying, black canine monster, with glowing red eyes and vicious-looking teeth. A firey, lava-like substance drips from it." + desc = "A demonic-looking black canine monster with glowing red eyes and sharp teeth. A firey, lava-like substance drips from it." icon_state = "hellhound" icon_living = "hellhound" icon_dead = "hellhound_dead" @@ -97,7 +97,7 @@ /mob/living/simple_animal/hostile/hellhound/AttackingTarget() . = ..() - if(ishuman(target)) + if(ishuman(target) && (!client || a_intent == INTENT_HARM)) special_aoe() /mob/living/simple_animal/hostile/hellhound/attackby(obj/item/C, mob/user, params) @@ -117,6 +117,7 @@ /mob/living/simple_animal/hostile/hellhound/greater name = "Greater Hellhound" + desc = "A demonic-looking black canine monster with glowing red eyes and sharp teeth. Greater hounds are far stronger than their lesser kin, and typically employed by powerful bluespace entities." icon_state = "hellhoundgreater" icon_living = "hellhoundgreater" icon_resting = "hellhoundgreater_sit"