From 2ef8a69d9a89b7dc7ebb5fe5349528e0a12ae0cd Mon Sep 17 00:00:00 2001 From: Victor Zisthus <56660717+VictorZisthus@users.noreply.github.com> Date: Fri, 9 Sep 2022 19:36:28 -0400 Subject: [PATCH] Defib Buff Removes the mental interface error on defibs. Nothing is more annoying for players, medical and patient alike, for an OOC issue to bleed into an in-character one. A brief bout of afk frustration or loss of internet leading medical to try and revive you using many chems, then giving up an leaving you for dead... A Search and Rescue going out to rescue someone in such a state... Why punish players of medical for doing their job with a no-sale at the absolute last step? Bonus points, monkey's are now revivable. Yay! --- code/game/objects/items/devices/defib.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm index f672cbcf1b..75fddde40e 100644 --- a/code/game/objects/items/devices/defib.dm +++ b/code/game/objects/items/devices/defib.dm @@ -308,8 +308,8 @@ return bad_vital_organ //this needs to be last since if any of the 'other conditions are met their messages take precedence - if(!H.client && !H.teleop) - return "buzzes, \"Resuscitation failed - Mental interface error. Further attempts may be successful.\"" + //if(!H.client && !H.teleop) + // return "buzzes, \"Resuscitation failed - Mental interface error. Further attempts may be successful.\""// CHOMPEdit, removing this check to allow revival through bad internet connections. return null