From 4e7bcfb7ba7489cb0c604c3af37389650ac390e4 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Thu, 30 Nov 2023 17:39:24 +0000
Subject: [PATCH] Revert "Update 03_body.dm"
This reverts commit 1ea1da8c25335ce2b051b2f5f485b0fc59aca7b2.
---
code/modules/client/preference_setup/general/03_body.dm | 7 +++----
code/modules/surgery/robotics.dm | 2 --
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm
index 2a878765c9..f964a71976 100644
--- a/code/modules/client/preference_setup/general/03_body.dm
+++ b/code/modules/client/preference_setup/general/03_body.dm
@@ -1138,10 +1138,9 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
if("Stomach")
organ = O_STOMACH
if("Brain")
- //organic characters can have cyberbrains if they want
- //if(pref.organ_data[BP_HEAD] != "cyborg")
- // to_chat(user, "You may only select a cybernetic or synthetic brain if you have a full prosthetic body.")
- // return
+ if(pref.organ_data[BP_HEAD] != "cyborg")
+ to_chat(user, "You may only select a cybernetic or synthetic brain if you have a full prosthetic body.")
+ return
organ = "brain"
var/datum/species/current_species = GLOB.all_species[pref.species]
diff --git a/code/modules/surgery/robotics.dm b/code/modules/surgery/robotics.dm
index e707d93e76..9e187d087d 100644
--- a/code/modules/surgery/robotics.dm
+++ b/code/modules/surgery/robotics.dm
@@ -459,11 +459,9 @@
return SURGERY_FAILURE
*/
- /* VOREStation Edit - allow implanting MMIs back into meat bodies
if(!(affected.robotic >= ORGAN_ROBOT))
to_chat(user, "You cannot install a computer brain into a meat skull.")
return SURGERY_FAILURE
- */
if(!target.should_have_organ("brain"))
to_chat(user, "You're pretty sure [target.species.name_plural] don't normally have a brain.")