diff --git a/code/modules/admin/newbanjob.dm b/code/modules/admin/newbanjob.dm index 60ed1aa886a..3deca48ecea 100644 --- a/code/modules/admin/newbanjob.dm +++ b/code/modules/admin/newbanjob.dm @@ -221,7 +221,7 @@ var/savefile/Banlistjob /*/datum/admins/proc/permjobban(ckey, computerid, reason, bannedby, temp, minutes, rank) if(AddBanjob(ckey, computerid, reason, usr.ckey, 0, 0, job)) - M << "\redYou have been banned from [job] by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been banned from [job] by [usr.client.ckey].\nReason: [reason]" M << "\red This is a permanent ban." if(config.banappeals) M << "\red To try to resolve this matter head to [config.banappeals]" @@ -231,7 +231,7 @@ var/savefile/Banlistjob message_admins("\blue[usr.client.ckey] has banned from [job] [ckey].\nReason: [reason]\nThis is a permanent ban.") /datum/admins/proc/timejobban(ckey, computerid, reason, bannedby, temp, minutes, rank) if(AddBanjob(ckey, computerid, reason, usr.ckey, 1, mins, job)) - M << "\redYou have been jobbanned from [job] by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been jobbanned from [job] by [usr.client.ckey].\nReason: [reason]" M << "\red This is a temporary ban, it will be removed in [mins] minutes." if(config.banappeals) M << "\red To try to resolve this matter head to [config.banappeals]" diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 20873efa2d3..b8c7ff3ca3c 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -810,7 +810,7 @@ return AddBan(M.ckey, M.computer_id, reason, usr.ckey, 1, mins) ban_unban_log_save("[usr.client.ckey] has banned [M.ckey]. - Reason: [reason] - This will be removed in [mins] minutes.") - M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]" M << "\red This is a temporary ban, it will be removed in [mins] minutes." feedback_inc("ban_tmp",1) DB_ban_record(BANTYPE_TEMP, M, mins, reason) @@ -834,7 +834,7 @@ AddBan(M.ckey, M.computer_id, reason, usr.ckey, 0, 0, M.lastKnownIP) if("No") AddBan(M.ckey, M.computer_id, reason, usr.ckey, 0, 0) - M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]" M << "\red This is a permanent ban." if(config.banappeals) M << "\red To try to resolve this matter head to [config.banappeals]" diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 643baf99c12..2c258ec15ba 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -594,7 +594,7 @@ Traitors and the like can also be revived with the previous role mostly intact. return if(M) AddBan(M.ckey, M.computer_id, reason, usr.ckey, 1, mins) - M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]" M << "\red This is a temporary ban, it will be removed in [mins] minutes." M << "\red To try to resolve this matter head to http://ss13.donglabs.com/forum/" log_admin("[usr.client.ckey] has banned [M.ckey].\nReason: [reason]\nThis will be removed in [mins] minutes.") @@ -609,7 +609,7 @@ Traitors and the like can also be revived with the previous role mostly intact. if(!reason) return AddBan(M.ckey, M.computer_id, reason, usr.ckey, 0, 0) - M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]." + M << "\redYou have been banned by [usr.client.ckey].\nReason: [reason]" M << "\red This is a permanent ban." M << "\red To try to resolve this matter head to http://ss13.donglabs.com/forum/" log_admin("[usr.client.ckey] has banned [M.ckey].\nReason: [reason]\nThis is a permanent ban.")