From d5a9e15f282b9b3396af8ff0b66faf21b616b579 Mon Sep 17 00:00:00 2001 From: Cerebulon Date: Wed, 29 Mar 2017 03:07:52 +0100 Subject: [PATCH] Fixed get_FBP_type() method for determining min/max ages to use new type names. --- code/modules/client/preference_setup/preference_setup.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preference_setup/preference_setup.dm b/code/modules/client/preference_setup/preference_setup.dm index f72ff0645c0..63e3fc266dc 100644 --- a/code/modules/client/preference_setup/preference_setup.dm +++ b/code/modules/client/preference_setup/preference_setup.dm @@ -264,11 +264,11 @@ if(!is_FBP()) return 0 // Not a robot. switch(pref.organ_data["brain"]) - if("assisted") + if("cybernetic") return PREF_FBP_CYBORG - if("mechanical") + if("positronic") return PREF_FBP_POSI - if("digital") + if("drone") return PREF_FBP_SOFTWARE return 0 //Something went wrong!