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.")