Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit a0beda4

Browse files
authored
Remove outdated comments
1 parent 907b3c9 commit a0beda4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/game/machinery/sci_bombardment.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@
174174
var/list/signals = list()
175175
data["signals"] = list()
176176

177-
for(var/gps in GLOB.GPS_list) //nulls on the list somehow
177+
for(var/gps in GLOB.GPS_list)
178178
var/datum/component/gps/G = gps
179179
if(G.emped || !G.tracking)
180180
continue
181-
var/turf/pos = get_turf(G.parent) // yogs - get_turf_global instead of get_turf
181+
var/turf/pos = get_turf(G.parent)
182182
if(!pos)
183183
continue
184184
if(!is_mining_level(pos.z))
@@ -251,7 +251,7 @@
251251
tcoords = params["tcoords"]
252252
for(var/gps in GLOB.GPS_list)
253253
var/datum/component/gps/T = gps
254-
var/turf/pos = get_turf(T.parent) // yogs - get_turf_global instead of get_turf
254+
var/turf/pos = get_turf(T.parent)
255255
if(!pos)
256256
continue
257257
if(T.gpstag == targetdest && "[pos.x], [pos.y], [pos.z]" == tcoords)

0 commit comments

Comments
 (0)