Files
CHOMPstation/code/datums/helper_datums/teleport_vr.dm
T
TheFurryFelineandGitHub d9f80d6905 Telenom Fixing
Ports https://github.com/VOREStation/VOREStation/pull/4960 so that the beacons allow yourself to get nommed from a teleporter trip.
2019-04-08 09:52:20 -04:00

13 lines
333 B
Plaintext

/datum/teleport/proc/try_televore()
//Destination is in a belly
if(isbelly(destination.loc))
var/obj/belly/B = destination.loc
teleatom.forceMove(get_turf(B)) //So we can splash the sound and sparks and everything.
playSpecials(destination,effectout,soundout)
teleatom.forceMove(B)
return TRUE
//No fun!
return FALSE