From 13b7bdb3e4e270daf184ad1dca2cfc8fba1e8118 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sun, 5 Feb 2017 07:23:31 -0500 Subject: [PATCH] Fixes a login runtime (#23707) --- code/modules/client/verbs/sethotkeys.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/client/verbs/sethotkeys.dm b/code/modules/client/verbs/sethotkeys.dm index f7bf137c31a..ee147870117 100644 --- a/code/modules/client/verbs/sethotkeys.dm +++ b/code/modules/client/verbs/sethotkeys.dm @@ -1,6 +1,7 @@ /client/verb/sethotkeys(from_pref = 0 as num) set name = "Set Hotkeys" - set hidden = 1 + set hidden = TRUE + set waitfor = FALSE set desc = "Used to set mob-specific hotkeys or load hoykey mode from preferences" var/hotkey_default = "default" @@ -21,4 +22,4 @@ if(current_setting in default_macros) winset(src, null, "mainwindow.macro=[hotkey_default] input.focus=true input.background-color=#d3b5b5") else - winset(src, null, "mainwindow.macro=[hotkey_macro] mapwindow.map.focus=true input.background-color=#e0e0e0") \ No newline at end of file + winset(src, null, "mainwindow.macro=[hotkey_macro] mapwindow.map.focus=true input.background-color=#e0e0e0")