From e0a762949d7863ad953030f2ef184e3bbd2ca2e4 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 14 Sep 2019 01:39:06 -0400 Subject: [PATCH] Fix Part 2 --- code/game/turfs/unsimulated/sky_vr.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/turfs/unsimulated/sky_vr.dm b/code/game/turfs/unsimulated/sky_vr.dm index 59f85ee1f38..c7c398b996f 100644 --- a/code/game/turfs/unsimulated/sky_vr.dm +++ b/code/game/turfs/unsimulated/sky_vr.dm @@ -27,8 +27,10 @@ return //Don't ghostport, very annoying if(AM.throwing) return //Being thrown over, not fallen yet - if(istype(AM, typecacheof(/obj/item/projectile))) + if(istype(AM, /obj/item/projectile)) return // pewpew should not fall out of the sky. pew. + if(istype(AM, /obj/effect/projectile)) + return // ...neither should the effects be falling var/mob/living/L if(isliving(AM))