diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index fcb840a894d..f343319d88a 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1427,9 +1427,9 @@ var/global/list/special_role_times = list( //minimum age (in days) for accounts var/r = href_list["role"] if(!(r in special_roles)) var/cleaned_r = sql_sanitize_text(r) - if(r != cleaned_r) // hold it right there criminal scum + if(r != cleaned_r) // up to no good message_admins("[user] attempted an href exploit! (This could have possibly lead to a \"Bobby Tables\" exploit, so they're probably up to no good). String: [r] ID: [last_id] IP: [last_ip]") - user << "Hold it right there, criminal scum" + user << "Please don't break the server." else be_special ^= r diff --git a/code/modules/client/preferences_mysql.dm b/code/modules/client/preferences_mysql.dm index e10c5fb30d4..e7a4ef93b33 100644 --- a/code/modules/client/preferences_mysql.dm +++ b/code/modules/client/preferences_mysql.dm @@ -422,7 +422,7 @@ var/B_shadowling = 16384 var/B_revenant = 32768 - var/list/archived = list(B_traitor,B_operative,B_changeling,B_wizard,B_malf,B_rev,B_alien,B_pai,B_cultist,B_ninja,B_raider,B_vampire,B_mutineer,B_blob,B_revenant) + var/list/archived = list(B_traitor,B_operative,B_changeling,B_wizard,B_malf,B_rev,B_alien,B_pai,B_cultist,B_ninja,B_raider,B_vampire,B_mutineer,B_blob,B_shadowling,B_revenant) // meow meow I am the copy cat for(var/flag in archived)