From e1192fea759d4db6a9475c6b71dbd071931e2b19 Mon Sep 17 00:00:00 2001 From: Kilakk Date: Mon, 16 Sep 2013 17:12:36 -0400 Subject: [PATCH] World loop removed successfully --- code/WorkInProgress/kilakk/fax.dm | 3 +++ code/modules/admin/topic.dm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/WorkInProgress/kilakk/fax.dm b/code/WorkInProgress/kilakk/fax.dm index e150937beb..a343146ada 100644 --- a/code/WorkInProgress/kilakk/fax.dm +++ b/code/WorkInProgress/kilakk/fax.dm @@ -14,6 +14,9 @@ var/obj/item/weapon/paper/tofax = null // what we're sending to central var/sendcooldown = 0 // to avoid spamming fax messages +/obj/machinery/faxmachine/process() + return 0 + /obj/machinery/faxmachine/attack_ai(mob/user as mob) return attack_hand(user) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 1fd7084901..400249763c 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1446,7 +1446,7 @@ var/customname = input(src.owner, "Pick a title for the report", "Title") as text|null - for(var/obj/machinery/faxmachine/F in world) + for(var/obj/machinery/faxmachine/F in machines) if(! (F.stat & (BROKEN|NOPOWER) ) ) var/obj/item/weapon/paper/P = new /obj/item/weapon/paper( F.loc ) P.name = "[command_name()]- [customname]"