From 004c100a29ec1dfd22de42e14507751aa884a9d1 Mon Sep 17 00:00:00 2001 From: GLACoding Date: Mon, 29 Jan 2018 00:26:03 +0000 Subject: [PATCH] Moves nutrition assignment to end of slime Initialize --- code/modules/mob/living/simple_animal/slime/slime.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/slime/slime.dm b/code/modules/mob/living/simple_animal/slime/slime.dm index f9fee7369ec..e7f6d3e49f4 100644 --- a/code/modules/mob/living/simple_animal/slime/slime.dm +++ b/code/modules/mob/living/simple_animal/slime/slime.dm @@ -27,8 +27,6 @@ healable = 0 gender = NEUTER - nutrition = 700 - see_in_dark = 8 verb_say = "blorbles" @@ -93,6 +91,7 @@ create_reagents(100) set_colour(new_colour) . = ..() + nutrition = 700 /mob/living/simple_animal/slime/Destroy() for (var/A in actions)