Merge pull request #34576 from coiax/removes-teleport-beacon-from-golem-ship

Removes teleport beacon from Free Golem Ship
This commit is contained in:
Jordan Brown
2018-01-19 09:49:59 -05:00
committed by CitadelStationBot
parent c6f227fc18
commit 95b6959190
2 changed files with 0 additions and 11 deletions

View File

@@ -28,16 +28,6 @@
/obj/item/device/wormhole_jaunter/proc/get_destinations(mob/user)
var/list/destinations = list()
if(isgolem(user))
for(var/obj/item/device/radio/beacon/B in GLOB.teleportbeacons)
var/turf/T = get_turf(B)
if(istype(T.loc, /area/ruin/powered/golem_ship))
destinations += B
// In the event golem beacon is destroyed, send to station instead
if(destinations.len)
return destinations
for(var/obj/item/device/radio/beacon/B in GLOB.teleportbeacons)
var/turf/T = get_turf(B)
if(is_station_level(T.z))