From 1ea1da8c25335ce2b051b2f5f485b0fc59aca7b2 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Sat, 25 Nov 2023 20:26:39 +0000
Subject: [PATCH] Update 03_body.dm
mmi/cyberbrain for meat bodies
---
code/modules/client/preference_setup/general/03_body.dm | 7 ++++---
code/modules/surgery/robotics.dm | 2 ++
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm
index f964a71976..2a878765c9 100644
--- a/code/modules/client/preference_setup/general/03_body.dm
+++ b/code/modules/client/preference_setup/general/03_body.dm
@@ -1138,9 +1138,10 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
if("Stomach")
organ = O_STOMACH
if("Brain")
- 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
+ //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
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 9e187d087d..e707d93e76 100644
--- a/code/modules/surgery/robotics.dm
+++ b/code/modules/surgery/robotics.dm
@@ -459,9 +459,11 @@
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.")