From 5019876316f6cdabef025be247d0d7616a267355 Mon Sep 17 00:00:00 2001 From: tkdrg Date: Mon, 3 Nov 2014 22:51:17 -0300 Subject: [PATCH] Uses the machines list instead of world --- code/modules/admin/verbs/randomverbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 881521f8147..74655bac1fa 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -779,7 +779,7 @@ Traitors and the like can also be revived with the previous role mostly intact. var/datum/TCS_Compiler/C = S.Compiler S.rawcode = "" C.Compile("") - for(var/obj/machinery/computer/telecomms/traffic/T in world) + for(var/obj/machinery/computer/telecomms/traffic/T in machines) T.storedcode = "" log_admin("[key_name(usr)] blanked all telecomms scripts.") message_admins("[key_name_admin(usr)] blanked all telecomms scripts.")