From 7d609537da0cef3fb6a153205216189d244304d3 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 18 Nov 2020 19:46:21 -0500 Subject: [PATCH] Removes Self-Surgery Toggle By staff request. It is largely agreed upon by staff that allowing players to enable self-surgery will just encourage more "i can avoid medbay" behavior which we are wanting to avoid. It can still be enabled by var-edit but that is it. --- code/modules/mob/living/living_powers.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/living_powers.dm b/code/modules/mob/living/living_powers.dm index 2125f2679e3..afd42bf9355 100644 --- a/code/modules/mob/living/living_powers.dm +++ b/code/modules/mob/living/living_powers.dm @@ -21,6 +21,7 @@ plane = OBJ_PLANE to_chat(src,"You are now hiding.") +/* VOREStation Removal /mob/living/proc/toggle_selfsurgery() set name = "Allow Self Surgery" set desc = "Toggles the 'safeties' on self-surgery, allowing you to do so." @@ -30,3 +31,4 @@ to_chat(usr, "You will [allow_self_surgery ? "now" : "no longer"] attempt to operate upon yourself.") log_admin("DEBUG \[[world.timeofday]\]: [src.ckey ? "[src.name]:([src.ckey])" : "[src.name]"] has [allow_self_surgery ? "Enabled" : "Disabled"] self surgery.") +*/ \ No newline at end of file