[MIRROR] Removed proc overhead from the Input subsystem (#6010)

* Removed proc overhead from the Input subsystem (#59339)

Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>

* Removed proc overhead from the Input subsystem

Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com>
Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>
This commit is contained in:
SkyratBot
2021-05-28 17:41:19 +02:00
committed by GitHub
parent 74ac919b21
commit c0830c5fcd
2 changed files with 2 additions and 9 deletions

View File

@@ -35,7 +35,5 @@ SUBSYSTEM_DEF(input)
user.set_macros()
/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()
for(var/mob/user as anything in GLOB.player_list)
user.focus?.keyLoop(user.client)