From e8b820eae6cdd9ba38ede196e9f12c70fd07598c Mon Sep 17 00:00:00 2001 From: Couls Date: Mon, 15 Jul 2019 21:13:29 -0400 Subject: [PATCH] Revert "Code improvement" This reverts commit 0ee716ef3825745e5ead81c151a3d12585e4b020. --- code/controllers/subsystem/input.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm index 0e88ef91675..db1f3bd7fb1 100644 --- a/code/controllers/subsystem/input.dm +++ b/code/controllers/subsystem/input.dm @@ -117,5 +117,6 @@ SUBSYSTEM_DEF(input) var/list/clients = GLOB.clients // Let's sing the list cache song if(listclearnulls(clients)) // clear nulls before we run keyloop log_world("Found a null in clients list!") - for(var/client/C in clients) + for(var/i in 1 to clients.len) + var/client/C = clients[i] C.keyLoop()