From 5ddd291be7b3e07235fc06a2e6f76a52c668638b Mon Sep 17 00:00:00 2001 From: Helg2 <93882977+Helg2@users.noreply.github.com> Date: Thu, 26 Dec 2024 22:29:59 +0200 Subject: [PATCH] Fixes hunter being constantly told that he's unable to stealth while being on fire. (#871) Update abilities_hunter.dm --- .../living/carbon/xenomorph/castes/hunter/abilities_hunter.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/hunter/abilities_hunter.dm b/code/modules/mob/living/carbon/xenomorph/castes/hunter/abilities_hunter.dm index 210af27d5c2..c16415a07fd 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/hunter/abilities_hunter.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/hunter/abilities_hunter.dm @@ -28,7 +28,8 @@ return FALSE var/mob/living/carbon/xenomorph/stealthy_beno = owner if(stealthy_beno.on_fire) - owner.balloon_alert(stealthy_beno, "Cannot enter Stealth!") + if(!silent) + owner.balloon_alert(stealthy_beno, "Cannot enter Stealth!") return FALSE return TRUE