From 2f0cf634208d46d4d5e8c147563bee980ed50de9 Mon Sep 17 00:00:00 2001 From: KittyNoodle Date: Mon, 16 Dec 2024 00:25:15 -0600 Subject: [PATCH] removedirectdamage --- monkestation/code/modules/assault_ops/code/interrogator.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkestation/code/modules/assault_ops/code/interrogator.dm b/monkestation/code/modules/assault_ops/code/interrogator.dm index ee6e2ac55918..806413ae48e1 100644 --- a/monkestation/code/modules/assault_ops/code/interrogator.dm +++ b/monkestation/code/modules/assault_ops/code/interrogator.dm @@ -176,7 +176,7 @@ return to_chat(human_occupant, span_userdanger("You feel a sharp pain as a drill penetrates your skull, it's unbearable!")) human_occupant.emote("scream") - human_occupant.apply_damage(30, BRUTE, BODY_ZONE_HEAD) + human_occupant.adjustBruteLoss(30) playsound(src, 'sound/effects/wounds/blood1.ogg', 100) playsound(src, 'sound/items/drill_use.ogg', 100) say("Stage two complete!") @@ -189,7 +189,7 @@ return to_chat(human_occupant, span_userdanger("You feel something penetrating your brain, it feels as though your childhood memories are fading! Please, make it stop! After a moment of silence, you realize you can't remember what happened to you!")) human_occupant.emote("scream") - human_occupant.apply_damage(20, BRUTE, BODY_ZONE_HEAD) + human_occupant.adjustBruteLoss(30) human_occupant.set_jitter_if_lower(3 MINUTES) human_occupant.Unconscious(1 MINUTES) playsound(src, 'sound/effects/dismember.ogg', 100)