[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.
This commit is contained in:
Wallem
2022-03-24 19:30:04 -05:00
committed by GitHub
parent b62cd9ad8f
commit a8b8bf376a
+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()