From 1f39be6cfbbf49edd29d10298dab00e1940f7b55 Mon Sep 17 00:00:00 2001 From: moxian Date: Sun, 26 Jun 2022 10:32:41 +0000 Subject: [PATCH] [GBP no update] Fix the display of the zone being operated on during the surgery (#18087) * Fix the display of the zone during the surgery * wrecks => rips. Better english --- code/modules/surgery/surgery.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm index 57c0cb64285..29d37d6b3c0 100644 --- a/code/modules/surgery/surgery.dm +++ b/code/modules/surgery/surgery.dm @@ -119,10 +119,10 @@ if(S?.voluntary) H.SetSleeping(0) // wake up people who are napping through the surgery if(pain_mod < 0.95) - to_chat(H, "The surgery on your [target_zone] is agonizingly painful, and wrecks you out of your shallow slumber!") + to_chat(H, "The surgery on your [parse_zone(target_zone)] is agonizingly painful, and rips you out of your shallow slumber!") else // Still wake people up, but they shouldn't be as alarmed. - to_chat(H, "The surgery being performed on your [target_zone] wakes you up.") + to_chat(H, "The surgery being performed on your [parse_zone(target_zone)] wakes you up.") prob_chance *= pain_mod //operating on conscious people is hard. if(prob(prob_chance) || isrobot(user))