mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Pinpointer runtime fixes (#15162)
* Fixes pinpointer.dm runtimes * more pinpointer stuff * fixes a crew.dm:37 runtime as well Co-authored-by: Kyep <Kyep@users.noreply.github.com>
This commit is contained in:
Vendored
+1
-1
@@ -34,7 +34,7 @@ GLOBAL_DATUM_INIT(crew_repository, /datum/repository/crew, new())
|
||||
if(!C || C.sensor_mode == SUIT_SENSOR_OFF || !C.has_sensor)
|
||||
continue
|
||||
var/turf/pos = get_turf(C)
|
||||
if(!T || pos.z != T.z)
|
||||
if(!istype(pos) || !T || pos.z != T.z)
|
||||
continue
|
||||
var/list/crewmemberData = list("dead"=0, "oxy"=-1, "tox"=-1, "fire"=-1, "brute"=-1, "area"="", "x"=-1, "y"=-1, "ref" = "\ref[H]")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user