mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
* Restores the Persistent Scars preference (#65358) * Restores the Persistant Scars preference I also had to remove some raw READ_FILE()s because that was now useless. I was thus able to remove the persistent_scars variable from the prefs, as it is now a standalone preference. * I forgor... * Restores the Persistent Scars preference Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
10 lines
541 B
Plaintext
10 lines
541 B
Plaintext
/datum/preference/toggle/persistent_scars
|
|
category = PREFERENCE_CATEGORY_NON_CONTEXTUAL
|
|
savefile_key = "persistent_scars"
|
|
savefile_identifier = PREFERENCE_CHARACTER
|
|
|
|
/datum/preference/toggle/persistent_scars/apply_to_human(mob/living/carbon/human/target, value)
|
|
// This proc doesn't do anything, due to the nature of persistent scars, we ALWAYS need to have a client to be able to use them properly. Or at the very least, a ckey.
|
|
// So we don't need to store this anywhere else, we simply search the preference when we need it.
|
|
return
|