diff --git a/code/modules/mob/living/simple_animal/hostile/statue.dm b/code/modules/mob/living/simple_animal/hostile/statue.dm index 294479c7c40..78ab42d3c0e 100644 --- a/code/modules/mob/living/simple_animal/hostile/statue.dm +++ b/code/modules/mob/living/simple_animal/hostile/statue.dm @@ -54,8 +54,6 @@ var/cannot_be_seen = 1 var/mob/living/creator = null - - // No movement while seen code. /mob/living/simple_animal/hostile/statue/Initialize(mapload, mob/living/creator) @@ -65,6 +63,8 @@ mob_spell_list += new /obj/effect/proc_holder/spell/aoe_turf/flicker_lights(src) mob_spell_list += new /obj/effect/proc_holder/spell/aoe_turf/blindness(src) mob_spell_list += new /obj/effect/proc_holder/spell/targeted/night_vision(src) + var/datum/action/innate/creature/teleport/teleport = new(src) + teleport.Grant(src) // Set creator if(creator)