From 721521b125215165eeb2c3c64a5733bb8bd9a696 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Sun, 1 Nov 2020 21:53:16 +0100 Subject: [PATCH] tweaks the tempchanging error 70-100 degrees up or down --- code/modules/mob/living/carbon/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index 2689f52a3a..157f870e80 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -869,8 +869,8 @@ GLOBAL_LIST_INIT(ballmer_windows_me_msg, list("Yo man, what if, we like, uh, put adjustToxLoss(10, toxins_type = TOX_SYSCORRUPT) to_chat(src, "System safeguards failing - Action urgently required.") if("changetemp") - adjust_bodytemperature(pick(list(-70, 70))) - to_chat(src, "Warning - Fatal coolant flow error at node [rand(6, 99)]!") + adjust_bodytemperature(pick(list(rand(-100, -70), rand(70, 100)))) + to_chat(src, "Warning - Fatal coolant flow error at node [rand(6, 99)]!") //This is totally not a reference to anything. /mob/living/carbon/proc/reenable_limb(disabled_limb) REMOVE_TRAIT(src, disabled_limb, CORRUPTED_SYSTEM)