mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
consistency helps
This commit is contained in:
@@ -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...
|
||||
@@ -40,7 +40,7 @@
|
||||
dat += text("<A href='?src=\ref[src];id=0'>Insert Prisoner ID</A><br>")
|
||||
dat += "<HR>Chemical Implants<BR>"
|
||||
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 @@
|
||||
********************************<BR>"}
|
||||
// END AUTOFIX
|
||||
dat += "<HR>Tracking Implants<BR>"
|
||||
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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -66,7 +66,7 @@ Frequency:
|
||||
temp += "[W.code]: [TB.x], [TB.y], [TB.z]<BR>"
|
||||
|
||||
temp += "<B>Located Implants:</B><BR>"
|
||||
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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user