diff --git a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm index cb92c649df8..aeded41f020 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/alien.dm @@ -81,6 +81,8 @@ move_to_delay = 4 maxHealth = 400 health = 400 + old_x = -16 + old_y = -16 pixel_x = -16 capacity = 3 diff --git a/code/modules/mob/living/simple_animal/hostile/vore/vore.dm b/code/modules/mob/living/simple_animal/hostile/vore/vore.dm index ca55f039b72..7bae66df36c 100644 --- a/code/modules/mob/living/simple_animal/hostile/vore/vore.dm +++ b/code/modules/mob/living/simple_animal/hostile/vore/vore.dm @@ -140,6 +140,9 @@ Don't use ranged mobs for vore mobs. icon_dead = "snake-dead" icon_living = "snake" icon_state = "snake" + old_x = -16 + old_y = -16 pixel_x = -16 + pixel_y = -16 maxHealth = 200 health = 200 \ No newline at end of file