From 23a69ab65106e27261872bd7ca4d91bdbf4b113a Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sun, 22 Feb 2026 23:06:58 +0100 Subject: [PATCH] some small sorting (#19206) --- code/modules/client/preferences/_preference.dm | 6 +++--- .../client/preferences/{ => types/character}/names.dm | 0 vorestation.dme | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename code/modules/client/preferences/{ => types/character}/names.dm (100%) diff --git a/code/modules/client/preferences/_preference.dm b/code/modules/client/preferences/_preference.dm index 069640f416f..45ff9c8355b 100644 --- a/code/modules/client/preferences/_preference.dm +++ b/code/modules/client/preferences/_preference.dm @@ -245,7 +245,7 @@ GLOBAL_LIST_INIT(preference_entries_by_key, init_preference_entries_by_key()) /datum/preference/proc/apply_to_silicon(mob/living/silicon/target, value) SHOULD_NOT_SLEEP(TRUE) SHOULD_CALL_PARENT(FALSE) - CRASH("`apply_to_human()` was not implemented for [type]!") + CRASH("`apply_to_silicon()` was not implemented for [type]!") /// Apply this preference onto the given animal. /// Must be overriden by subtypes. @@ -253,7 +253,7 @@ GLOBAL_LIST_INIT(preference_entries_by_key, init_preference_entries_by_key()) /datum/preference/proc/apply_to_animal(mob/living/simple_mob/target, value) SHOULD_NOT_SLEEP(TRUE) SHOULD_CALL_PARENT(FALSE) - CRASH("`apply_to_human()` was not implemented for [type]!") + CRASH("`apply_to_animal()` was not implemented for [type]!") /// Apply this preference onto the given living. /// Must be overriden by subtypes. @@ -261,7 +261,7 @@ GLOBAL_LIST_INIT(preference_entries_by_key, init_preference_entries_by_key()) /datum/preference/proc/apply_to_living(mob/living/target, value) SHOULD_NOT_SLEEP(TRUE) SHOULD_CALL_PARENT(FALSE) - CRASH("`apply_to_human()` was not implemented for [type]!") + CRASH("`apply_to_living()` was not implemented for [type]!") /// Returns which savefile to use for a given savefile identifier /datum/preferences/proc/get_save_data_for_savefile_identifier(savefile_identifier) diff --git a/code/modules/client/preferences/names.dm b/code/modules/client/preferences/types/character/names.dm similarity index 100% rename from code/modules/client/preferences/names.dm rename to code/modules/client/preferences/types/character/names.dm diff --git a/vorestation.dme b/vorestation.dme index 790b985f897..ccedcc835ad 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2469,7 +2469,6 @@ #include "code\modules\client\preference_setup\loadout\loadout_xeno.dm" #include "code\modules\client\preference_setup\occupation\occupation.dm" #include "code\modules\client\preferences\_preference.dm" -#include "code\modules\client\preferences\names.dm" #include "code\modules\client\preferences\preferences_tg.dm" #include "code\modules\client\preferences\middleware\_middleware.dm" #include "code\modules\client\preferences\middleware\bay_adapter.dm" @@ -2480,6 +2479,7 @@ #include "code\modules\client\preferences\migrations\16_colors.dm" #include "code\modules\client\preferences\migrations\17_tails.dm" #include "code\modules\client\preferences\migrations\18_jukebox.dm" +#include "code\modules\client\preferences\types\character\names.dm" #include "code\modules\client\preferences\types\character\antagonism\01_basic.dm" #include "code\modules\client\preferences\types\character\general\01_basic.dm" #include "code\modules\client\preferences\types\character\general\03_body.dm"