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))