From 9952e2cd9c1b15ad6cadf9532ffcb7d7a762a42c Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 22 Dec 2018 14:45:14 +0000 Subject: [PATCH] Adjusted ahelp colors --- code/game/machinery/computer/communications.dm | 4 ++-- code/modules/admin/verbs/adminhelp.dm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index f08662a5ec..5a15bca65e 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -53,7 +53,7 @@ if(..()) return 1 if (using_map && !(src.z in using_map.contact_levels)) - usr << "Unable to establish a connection: You're too far away from the station!" + usr << "Unable to establish a connection: You're too far away from the station!" return usr.set_machine(src) @@ -275,7 +275,7 @@ if(..()) return if (using_map && !(src.z in using_map.contact_levels)) - user << "Unable to establish a connection: You're too far away from the station!" + user << "Unable to establish a connection: You're too far away from the station!" return user.set_machine(src) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index c843255f85..42ecca5138 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -77,7 +77,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey"," mobs_found += found if(!ai_found && isAI(found)) ai_found = 1 - msg += "[original_word] (?) " + msg += "[original_word] (?) " continue msg += "[original_word] " @@ -91,7 +91,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey"," //Options bar: mob, details ( admin = 2, dev = 3, event manager = 4, character name (0 = just ckey, 1 = ckey and character name), link? (0 no don't make it a link, 1 do so), // highlight special roles (0 = everyone has same looking name, 1 = antags / special roles get a golden name) - msg = "Request for Help: [get_options_bar(mob, 2, 1, 1)][ai_cl] [msg]" + msg = "Request for Help: [get_options_bar(mob, 2, 1, 1)][ai_cl] [msg]" var/admin_number_afk = 0 @@ -104,7 +104,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey"," X << 'sound/effects/adminhelp.ogg' //show it to the person adminhelping too - src << "PM to-Staff : [original_msg]" + src << "PM to-Staff : [original_msg]" var/admin_number_present = admins.len - admin_number_afk log_admin("HELP: [key_name(src)]: [original_msg] - heard by [admin_number_present] non-AFK admins.")