diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index 1f0e0152b..e26291e03 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -15,7 +15,6 @@ #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) @@ -71,4 +70,4 @@ //Flags in the players table in the db #define DB_FLAG_EXEMPT 1 -#define DEFAULT_CYBORG_NAME "Default Cyborg Name" \ No newline at end of file +#define DEFAULT_CYBORG_NAME "Default Cyborg Name" diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 3c4c0d5dd..5a0999a73 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1157,7 +1157,6 @@ 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." @@ -1178,13 +1177,6 @@ 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 += " |