mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 21:19:44 +01:00
some small sorting (#19206)
This commit is contained in:
@@ -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)
|
||||
|
||||
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user