From 40a1f6d20023779046bc983ed3271c08a44d5901 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Fri, 22 Mar 2019 11:39:43 +0100 Subject: [PATCH] maxHealth not maxhealth --- code/modules/mob/living/simple_animal/animals/tomato.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/tomato.dm b/code/modules/mob/living/simple_animal/animals/tomato.dm index 54fd4354f4..59da8d5bb3 100644 --- a/code/modules/mob/living/simple_animal/animals/tomato.dm +++ b/code/modules/mob/living/simple_animal/animals/tomato.dm @@ -192,12 +192,12 @@ ..() if(!anchored) anchored=1 - if(maxhealth <= 499) //Ok maybe there are limits - maxhealth = health //Limits are merely a suggestion + if(maxHealth <= 499) //Ok maybe there are limits + maxHealth = health //Limits are merely a suggestion if(vore_fullness && !antispam) antispam = 1 spawn(10) - if(maxhealth <= 499) + if(maxHealth <= 499) maxHealth += 1 health += 1 antispam = !antispam