Improves logging on teleportation portals (#17637)

* teleporter logging

* affected review and improvements
This commit is contained in:
SteelSlayer
2022-04-21 14:58:30 -05:00
committed by GitHub
parent 90109e8916
commit 94306264f7
3 changed files with 20 additions and 14 deletions
@@ -304,7 +304,7 @@
U.message_holder("Extraction signal received, agent. [SSmapping.map_datum.fluff_name]'s bluespace transport jamming systems have been sabotaged. "\
+ "We have opened a temporary portal at your flare location - proceed to the target's extraction by inserting them into the portal.", 'sound/effects/confirmdropoff.ogg')
// Open a portal
var/obj/effect/portal/redspace/contractor/P = new(get_turf(F), pick(GLOB.syndieprisonwarp), null, 0)
var/obj/effect/portal/redspace/contractor/P = new(get_turf(F), pick(GLOB.syndieprisonwarp), F, 0, M)
P.contract = src
P.contractor_mind = M.mind
P.target_mind = contract.target
@@ -42,7 +42,7 @@
to_chat(user, "<span class='notice'>[src] found no beacons in the world to anchor a wormhole to.</span>")
return
var/chosen_beacon = pick(L)
var/obj/effect/portal/jaunt_tunnel/J = new(get_turf(src), get_turf(chosen_beacon), src, 100)
var/obj/effect/portal/jaunt_tunnel/J = new(get_turf(src), get_turf(chosen_beacon), src, 100, user)
J.emagged = emagged
if(adjacent)
try_move_adjacent(J)