Makes impact of global preference clearer to players

This commit is contained in:
Runa Dacino
2023-01-29 00:36:32 +01:00
parent 9283ae65a6
commit 84e279eafb
+2 -2
View File
@@ -124,10 +124,10 @@
/client/verb/toggle_pain_frequency()
set name = "Toggle Pain Frequency"
set category = "Preferences"
set desc = "Toggles frequency of per-limb pain messages between default and extende"
set desc = "When toggled on, increases the cooldown of pain messages sent to chat for minor, single-limb injuries."
var/pref_path = /datum/client_preference/pain_frequency
toggle_preference(pref_path)
to_chat(src, "The frequency of pain messages is now [ (is_preference_enabled(pref_path)) ? "extended" : "default"].")
to_chat(src, "The cooldown between pain messages for minor (under 20/5 single limb injury) is now [ (is_preference_enabled(pref_path)) ? "extended" : "default"].")