diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm index f4763a74ed8..5dbb642f2e6 100644 --- a/code/controllers/subsystem/input.dm +++ b/code/controllers/subsystem/input.dm @@ -1,12 +1,12 @@ SUBSYSTEM_DEF(input) name = "Input" wait = 1 //SS_TICKER means this runs every tick - flags = SS_TICKER | SS_NO_INIT | SS_KEEP_TIMING - priority = 151 + flags = SS_TICKER | SS_NO_INIT + priority = 1000 runlevels = RUNLEVELS_DEFAULT | RUNLEVEL_LOBBY /datum/controller/subsystem/input/fire() var/list/clients = GLOB.clients // Let's sing the list cache song for(var/i in 1 to clients.len) var/client/C = clients[i] - C.keyLoop() \ No newline at end of file + C.keyLoop()