From 0339ff55f102453fa3530296c91dc83a762d23d2 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Mon, 31 Jul 2017 17:58:06 -0500 Subject: [PATCH] Using changeling fake death should work properly if self-respiration is on --- code/game/gamemodes/changeling/powers/fake_death.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/gamemodes/changeling/powers/fake_death.dm b/code/game/gamemodes/changeling/powers/fake_death.dm index 765dbb51e6..cae98164a0 100644 --- a/code/game/gamemodes/changeling/powers/fake_death.dm +++ b/code/game/gamemodes/changeling/powers/fake_death.dm @@ -33,6 +33,9 @@ if(C.suiciding) C.suiciding = 0 + if(C.does_not_breathe) + C.does_not_breathe = 0 //This means they don't autoheal the oxy damage from the next step + if(C.stat != DEAD) C.adjustOxyLoss(C.maxHealth * 2)