From ee1aba7a32d73a32694fcf904e166e7985df6676 Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Thu, 29 Sep 2022 17:53:05 -0400 Subject: [PATCH] pumping your heart doesnt require to be conscious (#63290) Simply removes the requirement to be conscious to pump your blood with a cursed heart. Why It's Good For The Game Entering crit or falling asleep is basically a life sentence since you are unable to pump your blood while asleep. The player still is manually pumping it, I don't see any reason why the user has to be awake for it. This also means medical can't revive you, as you'll instantly lose all your blood before you have enough time to wake up to start pumping again. The only IC fix would be to remove your heart entirely, something most doctors wouldn't even notice. Changelog cl fix: You can manually pump your blood while asleep/in crit, rather than instantly lose all your blood and die forever. /cl --- code/modules/surgery/organs/heart.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 2e9cc5034da..57cddfdb183 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -148,6 +148,7 @@ /datum/action/item_action/organ_action/cursed_heart name = "Pump your blood" + check_flags = NONE //You are now brea- pumping blood manually /datum/action/item_action/organ_action/cursed_heart/Trigger(trigger_flags)