diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm index 0e3c5ec8aecdb..b57d743e0a0e7 100644 --- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm +++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm @@ -190,19 +190,16 @@ SEND_SIGNAL(X, COMSIG_XENOMORPH_ATTACK_HUMAN, src) //RUTGMC EDIT ADDITION BEGIN - Preds - if(wear_mask && X.zone_selected == "head") - if(!istype(wear_mask, /obj/item/clothing/mask/gas/yautja)) - return FALSE - if(prob(5)) - playsound(loc, "alien_claw_metal", 25, 1) - X.visible_message(span_danger("The [X] smashes off [src]'s [wear_mask.name]!"), \ - span_danger("You smash off [src]'s [wear_mask.name]!"), null, 5) - dropItemToGround(wear_mask) - if(isyautja(src)) - emote("roar") - else - emote("scream") - return TRUE + if(wear_mask && X.zone_selected == "head" && istype(wear_mask, /obj/item/clothing/mask/gas/yautja) && prob(5)) + playsound(loc, "alien_claw_metal", 25, 1) + X.visible_message(span_danger("The [X] smashes off [src]'s [wear_mask.name]!"), \ + span_danger("You smash off [src]'s [wear_mask.name]!"), null, 5) + dropItemToGround(wear_mask) + if(isyautja(src)) + emote("roar") + else + emote("scream") + return TRUE //RUTGMC EDIT ADDITION END . = ..()