From da5812b07bd241e59b893cccf7490ceb99c1a8a9 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sun, 15 Apr 2018 13:38:01 +0300 Subject: [PATCH] Stops ghosts from being able to start plasma fires --- code/datums/helper_datums/teleport.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm index 0b208dd0ea..3f25cbdb9e 100644 --- a/code/datums/helper_datums/teleport.dm +++ b/code/datums/helper_datums/teleport.dm @@ -79,7 +79,7 @@ return 1 /datum/teleport/proc/playSpecials(atom/location,datum/effect_system/effect,sound) - if(location) + if(location && !isobserver(teleatom)) if(effect) INVOKE_ASYNC(src, .proc/do_effect, location, effect) if(sound)