VR world update

This commit is contained in:
Repede
2020-08-12 21:50:42 -04:00
parent f5cffe8bb6
commit 44e41766cc
3 changed files with 97 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
//simple mob blocker to use in VR to stop mobs from going through
/obj/effect/mobblocker
name = "Mob blocker"
desc = "Blocks simple mobs from going through"
icon = 'icons/effects/effects.dmi'
icon_state = "directional_shield"
anchored = TRUE
/obj/effect/mobblocker/CanPass(atom/movable/mover, turf/target)
if(istype(mover, /mob/living/simple_mob))
return FALSE
return TRUE