From 7c1a2808d1832c8a5c4ab674d51fe3d4bff2146d Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Fri, 13 Nov 2020 18:58:29 +0100 Subject: [PATCH] tweaks purge corruption Sleeping() > Unconscious() --- code/modules/surgery/purge_corruption.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/purge_corruption.dm b/code/modules/surgery/purge_corruption.dm index 9d505782e7..031cbc884c 100644 --- a/code/modules/surgery/purge_corruption.dm +++ b/code/modules/surgery/purge_corruption.dm @@ -79,7 +79,7 @@ Has a version for organic people and robotic/synthetic ones, considering robotic "[user] completes the surgery on [target].") var/purged = target.getToxLoss(TOX_SYSCORRUPT) target.setToxLoss(0, toxins_type = TOX_SYSCORRUPT) - target.Sleeping(round(purged * 0.2, 1)) + target.Unconscious(round(purged * 0.2, 1)) return TRUE /datum/surgery_step/remove_corruption/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)