From fbfac8ff3679c3b7d3d67ea1a61ee8f0f4b3eecb Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Mon, 16 Apr 2018 00:00:58 +0300 Subject: [PATCH] Merge pull request #37233 from KorPhaeron/gps3 Fixes BSA targetting offline GPS --- code/modules/station_goals/bsa.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/station_goals/bsa.dm b/code/modules/station_goals/bsa.dm index cdef94127e..2fea99d92b 100644 --- a/code/modules/station_goals/bsa.dm +++ b/code/modules/station_goals/bsa.dm @@ -254,7 +254,8 @@ /obj/machinery/computer/bsa_control/proc/calibrate(mob/user) var/list/gps_locators = list() for(var/obj/item/device/gps/G in GLOB.GPS_list) //nulls on the list somehow - gps_locators[G.gpstag] = G + if(G.tracking) + gps_locators[G.gpstag] = G var/list/options = gps_locators if(area_aim)