[MIRROR] [NO GPB] Makes GPSes work again [MDB IGNORE] (#12260)

* [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.

* [NO GPB] Makes GPSes work again

Co-authored-by: Wallem <66052067+Wallemations@users.noreply.github.com>
This commit is contained in:
SkyratBot
2022-03-25 00:43:47 +00:00
committed by GitHub
co-authored by Wallem
parent 0c0ba352b9
commit 78bd42e631
+1 -2
View File
@@ -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()