From a8b8bf376a36c2d236f3fb002794d9f0cd224cc3 Mon Sep 17 00:00:00 2001 From: Wallem <66052067+Wallemations@users.noreply.github.com> Date: Thu, 24 Mar 2022 20:30:04 -0400 Subject: [PATCH] [NO GPB] Makes GPSes work again (#65623) Removes the tracking arg from GPSs, which I added because I thougt it'd be a helpful thing to add. Turns out it just makes it turn every GPS off on creation. --- code/datums/components/gps.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/datums/components/gps.dm b/code/datums/components/gps.dm index 9ceb4e427c6..865ac8b8120 100644 --- a/code/datums/components/gps.dm +++ b/code/datums/components/gps.dm @@ -6,11 +6,10 @@ GLOBAL_LIST_EMPTY(GPS_list) var/tracking = TRUE var/emped = FALSE -/datum/component/gps/Initialize(_gpstag = "COM0", _tracking = TRUE) +/datum/component/gps/Initialize(_gpstag = "COM0") if(!isatom(parent)) return COMPONENT_INCOMPATIBLE gpstag = _gpstag - tracking = _tracking GLOB.GPS_list += src /datum/component/gps/Destroy()