From baaf3b2335e150e9df78eacf5c3d896154750a2a Mon Sep 17 00:00:00 2001 From: Spades Date: Mon, 23 May 2016 00:36:12 -0400 Subject: [PATCH] Fixes #178 --- code/modules/mob/living/simple_animal/hostile/vore/alien.dm | 2 ++ code/modules/mob/living/simple_animal/hostile/vore/vore.dm | 3 +++ 2 files changed, 5 insertions(+) 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