diff --git a/code/modules/admin/IsBanned.dm b/code/modules/admin/IsBanned.dm index 0191d1c67bd..158f7ed1916 100644 --- a/code/modules/admin/IsBanned.dm +++ b/code/modules/admin/IsBanned.dm @@ -85,7 +85,10 @@ world/IsBanned(key,address,computer_id) if(text2num(duration) > 0) expires = "The ban is for [duration] minutes and expires on [expiration] (server time)." else - expires = " The is a permanent ban." + var/appealmessage = "" + if(config && config.banappeals) + appealmessage = " You may appeal it at [config.banappeals]." + expires = " The is a permanent ban.[appealmessage]" var/desc = "\nReason: You, or another user of this computer or connection ([pckey]) is banned from playing here. The ban reason is:\n[reason]\nThis ban was applied by [ackey] on [bantime]. [expires]" diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 48148244e20..cc3b54b6bde 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -272,7 +272,7 @@ if(holder) add_admin_verbs() - admin_memo_output("Show", 0) + admin_memo_output("Show", 0, 1) // Forcibly enable hardware-accelerated graphics, as we need them for the lighting overlays. // (but turn them off first, since sometimes BYOND doesn't turn them on properly otherwise) diff --git a/config/example/config.txt b/config/example/config.txt index a3260d4a04d..f370103cbbb 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -165,7 +165,7 @@ GUEST_BAN ## Wiki address # WIKIURL http://example.org -## Ban appeals URL - usually for a forum or wherever people should go to contact your admins. +## Ban appeals URL - usually for a forum or wherever people should go to contact your admins. Will show up on permanent bans. # BANAPPEALS http://example.org ## Media base URL - determines where to pull the jukebox playlist from. @@ -175,10 +175,10 @@ GUEST_BAN ## spawns a spellbook which gives object-type spells instead of verb-type spells for the wizard # FEATURE_OBJECT_SPELL_SYSTEM -##Toggle for having jobs load up from the .txt +## Toggle for having jobs load up from the .txt LOAD_JOBS_FROM_TXT -##Remove the # mark infront of this to forbid admins from posssessing the singularity. +## Remove the # mark infront of this to forbid admins from posssessing the singularity. #FORBID_SINGULO_POSSESSION ## Remove the # to show a popup 'reply to' window to every non-admin that recieves an adminPM.