Nanotrasen to GATO - comments

I know it's a mess, but the least I can do is add comments anywhere I can
This commit is contained in:
evilew
2024-11-19 01:59:28 +01:00
parent 17385694fe
commit 10ef9e374a
154 changed files with 326 additions and 326 deletions
+3 -3
View File
@@ -137,7 +137,7 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
/obj/machinery/computer/auxillary_base/proc/set_landing_zone(turf/T, mob/user, no_restrictions)
var/obj/docking_port/mobile/auxillary_base/base_dock = locate(/obj/docking_port/mobile/auxillary_base) in SSshuttle.mobile
if(!base_dock) //Not all maps have an Aux base. This object is useless in that case.
to_chat(user, "<span class='warning'>This station is not equipped with an auxillary base. Please contact your GATO contractor.</span>")
to_chat(user, "<span class='warning'>This station is not equipped with an auxillary base. Please contact your GATO contractor.</span>") //GS13 - Nanotrasen to GATO
return
if(!no_restrictions)
var/static/list/disallowed_turf_types = typecacheof(list(
@@ -319,7 +319,7 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
break
if(!Mport)
to_chat(user, "<span class='warning'>This station is not equipped with an appropriate mining shuttle. Please contact GATO Support.</span>")
to_chat(user, "<span class='warning'>This station is not equipped with an appropriate mining shuttle. Please contact GATO Support.</span>") //GS13 - Nanotrasen to GATO
return
var/obj/docking_port/mobile/mining_shuttle
@@ -333,7 +333,7 @@ interface with the mining shuttle at the landing site if a mobile beacon is also
break
if(!mining_shuttle) //Not having a mining shuttle is a map issue
to_chat(user, "<span class='warning'>No mining shuttle signal detected. Please contact GATO Support.</span>")
to_chat(user, "<span class='warning'>No mining shuttle signal detected. Please contact GATO Support.</span>") //GS13 - Nanotrasen to GATO
SSshuttle.stationary.Remove(Mport)
qdel(Mport)
return