From de5defa93695b683d70ace65a7ff571b82a208d4 Mon Sep 17 00:00:00 2001 From: Couls Date: Fri, 12 Jul 2019 06:00:19 -0400 Subject: [PATCH] Diagonal tweaks --- code/modules/admin/verbs/adminhelp.dm | 5 +---- code/modules/keybindings/bindings_client.dm | 2 +- code/modules/keybindings/bindings_robot.dm | 3 +++ 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 685dc1eff2e..8c5d76e62e1 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -185,7 +185,4 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey"," else send2irc(source, "[msg] - All admins AFK ([admin_number_afk]/[admin_number_total]) or skipped ([admin_number_ignored]/[admin_number_total])") return admin_number_present - -/client/proc/get_adminhelp() - var/msg = input(src, "Please describe your problem concisely and an admin will help as soon as they're able.", "Adminhelp contents") as text|null - adminhelp(msg) \ No newline at end of file + \ No newline at end of file diff --git a/code/modules/keybindings/bindings_client.dm b/code/modules/keybindings/bindings_client.dm index cea95f0e5b1..dad1c62b9fd 100644 --- a/code/modules/keybindings/bindings_client.dm +++ b/code/modules/keybindings/bindings_client.dm @@ -17,7 +17,7 @@ if(keys_held["Ctrl"] && keys_held["Shift"]) // Is this command ever used? winset(src, null, "command=.options") else - get_adminhelp() + adminhelp() return if("F2") // Screenshot. Hold shift to choose a name and location to save in winset(src, null, "command=.screenshot [!keys_held["shift"] ? "auto" : ""]") diff --git a/code/modules/keybindings/bindings_robot.dm b/code/modules/keybindings/bindings_robot.dm index 2354f33c9e9..a6b3cd3f21e 100644 --- a/code/modules/keybindings/bindings_robot.dm +++ b/code/modules/keybindings/bindings_robot.dm @@ -6,6 +6,9 @@ if("4") a_intent_change(INTENT_HOTKEY_LEFT) return + if("X") + cycle_modules() + return if("Q") uneq_active() return