diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm index b3f7fc4331f..a20149b8c97 100644 --- a/code/_globalvars/lists/objects.dm +++ b/code/_globalvars/lists/objects.dm @@ -24,7 +24,6 @@ var/global/list/apcs = list() var/global/list/air_alarms = list() var/global/list/power_monitors = list() -var/global/list/tracking_implants = list() //list of all tracking implants to work out what treks everyone are on. Sadly not on lavaworld not implemented... var/global/list/beacons = list() var/global/list/shuttle_caller_list = list() //list of all communication consoles and AIs, for automatic shuttle calls when there are none. var/global/list/tracked_implants = list() //list of all current implants that are tracked to work out what sort of trek everyone is on. Sadly not on lavaworld not implemented... \ No newline at end of file diff --git a/code/game/machinery/computer/prisoner.dm b/code/game/machinery/computer/prisoner.dm index 034bd299435..d9c8578c853 100644 --- a/code/game/machinery/computer/prisoner.dm +++ b/code/game/machinery/computer/prisoner.dm @@ -40,7 +40,7 @@ dat += text("Insert Prisoner ID
") dat += "
Chemical Implants
" var/turf/Tr = null - for(var/obj/item/weapon/implant/chem/C in tracking_implants) + for(var/obj/item/weapon/implant/chem/C in tracked_implants) Tr = get_turf(C) if((Tr) && (Tr.z != src.z)) continue//Out of range if(!C.implanted) continue @@ -54,7 +54,7 @@ ********************************
"} // END AUTOFIX dat += "
Tracking Implants
" - for(var/obj/item/weapon/implant/tracking/T in tracking_implants) + for(var/obj/item/weapon/implant/tracking/T in tracked_implants) Tr = get_turf(T) if((Tr) && (Tr.z != src.z)) continue//Out of range if(!T.implanted) continue diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 2af6157b0ee..6d0f70fc528 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -192,7 +192,7 @@ areaindex[tmpname] = 1 L[tmpname] = R - for (var/obj/item/weapon/implant/tracking/I in tracking_implants) + for (var/obj/item/weapon/implant/tracking/I in tracked_implants) if (!I.implanted || !ismob(I.loc)) continue else diff --git a/code/game/objects/items/weapons/teleportation.dm b/code/game/objects/items/weapons/teleportation.dm index 6fcc67e1e67..61663a82fb4 100644 --- a/code/game/objects/items/weapons/teleportation.dm +++ b/code/game/objects/items/weapons/teleportation.dm @@ -66,7 +66,7 @@ Frequency: temp += "[W.code]: [TB.x], [TB.y], [TB.z]
" temp += "Located Implants:
" - for (var/obj/item/weapon/implant/tracking/T in tracking_implants) + for (var/obj/item/weapon/implant/tracking/T in tracked_implants) if (!T.implanted || !T.imp_in) continue