diff --git a/code/game/objects/structures/statues.dm b/code/game/objects/structures/statues.dm
index cfd459bd..14498a98 100644
--- a/code/game/objects/structures/statues.dm
+++ b/code/game/objects/structures/statues.dm
@@ -349,17 +349,17 @@
to_chat(M, "Nothing happens.")
return
- if(M.fatness < FATNESS_LEVEL_FAT)
+ if(M.fatness < FATNESS_LEVEL_FATTER)
to_chat(M, "The moment your hand meets the statue, you feel a little warmer...")
- else if(M.fatness < FATNESS_LEVEL_VERYFAT)
+ else if(M.fatness < FATNESS_LEVEL_OBESE)
to_chat(M, "Upon each poke of the statue, you feel yourself get a little heavier.")
- else if(M.fatness < FATNESS_LEVEL_MORBIDLY_OBESE)
+ else if(M.fatness < FATNESS_LEVEL_EXTREMELY_OBESE)
to_chat(M, "With each touch you keep getting fatter... But the fatter you grow, the more enticed you feel to poke the statue.")
else if(M.fatness < FATNESS_LEVEL_BARELYMOBILE)
to_chat(M, "The world around you blurs as you focus on prodding the statue, your waistline widening further...")
else if(M.fatness < FATNESS_LEVEL_IMMOBILE)
to_chat(M, "A whispering voice gently compliments your massive body, your own mind begging to touch the statue more.")
- else if(M.fatness < FATNESS_LEVEL_BLOB)
+ else
to_chat(M, "You can barely reach the statue past your floor-covering stomach! And yet, it still calls to you...")
/obj/structure/statue/calorite/fatty/Bumped(atom/movable/AM)
@@ -384,5 +384,3 @@
/obj/structure/statue/calorite/fatty/attack_paw(mob/living/carbon/M)
statue_fatten(M)
-
-