From 87c8be10dd38ea127200441f490150197fe8f15a Mon Sep 17 00:00:00 2001 From: Null Snapshot Date: Thu, 9 Jul 2015 12:26:32 -0700 Subject: [PATCH] spans and grammar for topic.dm --- code/modules/admin/topic.dm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index bbc7339715..52792aa926 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -663,7 +663,7 @@ if(!check_rights(R_MOD,0) && !check_rights(R_ADMIN)) return if(check_rights(R_MOD,0) && !check_rights(R_ADMIN) && !config.mods_can_job_tempban) // If mod and tempban disabled - usr << "\red mod jobbanning is disabled!" + usr << "Mod jobbanning is disabled!" return var/mob/M = locate(href_list["jobban4"]) @@ -747,7 +747,7 @@ if(!mins) return if(check_rights(R_MOD, 0) && !check_rights(R_BAN) && mins > config.mod_job_tempban_max) - usr << "\red Moderators can only job tempban up to [config.mod_job_tempban_max] minutes!" + usr << " Moderators can only job tempban up to [config.mod_job_tempban_max] minutes!" var/reason = input(usr,"Reason?","Please State Reason","") as text|null if(!reason) return @@ -858,6 +858,10 @@ else if(href_list["newban"]) if(!check_rights(R_MOD,0) && !check_rights(R_BAN)) return + if(check_rights(R_MOD,0) && !check_rights(R_ADMIN) && !config.mods_can_job_tempban) // If mod and tempban disabled + usr << "Mod jobbanning is disabled!" + return + var/mob/M = locate(href_list["newban"]) if(!ismob(M)) return @@ -869,7 +873,7 @@ if(!mins) return if(check_rights(R_MOD, 0) && !check_rights(R_BAN) && mins > config.mod_tempban_max) - usr << "\red Moderators can only job tempban up to [config.mod_tempban_max] minutes!" + usr << "Moderators can only job tempban up to [config.mod_tempban_max] minutes!" return if(mins >= 525600) mins = 525599 var/reason = input(usr,"Reason?","reason","Griefer") as text|null