From 36d3b7a9305c328fe305ae3fb4716236d0cfcc7a Mon Sep 17 00:00:00 2001 From: joep van der velden Date: Thu, 29 Oct 2020 14:45:53 +0100 Subject: [PATCH] Makes honkbots not think they are secbots --- code/modules/mob/living/simple_animal/bot/honkbot.dm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/honkbot.dm b/code/modules/mob/living/simple_animal/bot/honkbot.dm index 62c133fffd7..e0f58ee5764 100644 --- a/code/modules/mob/living/simple_animal/bot/honkbot.dm +++ b/code/modules/mob/living/simple_animal/bot/honkbot.dm @@ -91,11 +91,9 @@ return dat /mob/living/simple_animal/bot/honkbot/proc/retaliate(mob/living/carbon/human/H) - threatlevel = H.assess_threat(src) - threatlevel += 6 - if(threatlevel >= 4) - target = H - mode = BOT_HUNT + threatlevel = 6 + target = H + mode = BOT_HUNT /mob/living/simple_animal/bot/honkbot/attack_hand(mob/living/carbon/human/H) if(H.a_intent == INTENT_HARM)