diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index a2f57313..1f0e0152 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -15,6 +15,7 @@ #define DISABLE_DEATHRATTLE (1<<12) #define DISABLE_ARRIVALRATTLE (1<<13) #define COMBOHUD_LIGHTING (1<<14) +#define ANTAG_SYNC_WITH_CHARS (1<<15) #define TOGGLES_DEFAULT (SOUND_ADMINHELP|SOUND_MIDI|SOUND_AMBIENCE|SOUND_LOBBY|MEMBER_PUBLIC|INTENT_STYLE|MIDROUND_ANTAG|SOUND_INSTRUMENTS|SOUND_SHIP_AMBIENCE|SOUND_PRAYERS|SOUND_ANNOUNCEMENTS) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 36b6058b..0f48a9dd 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1102,6 +1102,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" if(4) //Antag Preferences + dat += "
"
dat += "Special Role Settings" if(jobban_isbanned(user, ROLE_SYNDICATE)) dat += "You are banned from antagonist roles." @@ -1122,6 +1123,13 @@ GLOBAL_LIST_EMPTY(preferences_datums) else dat += "Be [capitalize(i)]: [(i in be_special) ? "Enabled" : "Disabled"]" dat += "Midround Antagonist: [(toggles & MIDROUND_ANTAG) ? "Enabled" : "Disabled"] " + dat += " | "
+ dat += "Sync Settings" + dat += "Sync antag prefs. with all characters: [(toggles & ANTAG_SYNC_WITH_CHARS) ? "Yes" : "No"]" + dat += "Copy and save antag prefs. to all characters: Copy " + dat += "Reset antag prefs. for this character: Reset " + dat += " |