From d3fa1dc87f3cd07fa82155e2223a719e60b1673f Mon Sep 17 00:00:00 2001 From: AlManiak Date: Sun, 17 Nov 2024 18:00:00 +0100 Subject: [PATCH] Fixed stuffed belly sprite for non-round belly --- GainStation13/code/modules/mob/living/belly.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/modules/mob/living/belly.dm b/GainStation13/code/modules/mob/living/belly.dm index 81f65276c1..e489db197e 100644 --- a/GainStation13/code/modules/mob/living/belly.dm +++ b/GainStation13/code/modules/mob/living/belly.dm @@ -40,12 +40,13 @@ switch(owner.fullness) if(FULLNESS_LEVEL_BLOATED to FULLNESS_LEVEL_BEEG) icon = 'hyperstation/icons/obj/genitals/belly_round.dmi' //We use round belly to represent stuffedness + icon_state = "belly_round_[size]" if(FULLNESS_LEVEL_BEEG to FULLNESS_LEVEL_NOMOREPLZ) icon = 'hyperstation/icons/obj/genitals/belly_round.dmi' - icon_state = "belly_[icon_shape_state]_[size+1]" + icon_state = "belly_round_[size+1]" if(FULLNESS_LEVEL_NOMOREPLZ to INFINITY) icon = 'hyperstation/icons/obj/genitals/belly_round.dmi' - icon_state = "belly_[icon_shape_state]_[size+2]" + icon_state = "belly_round_[size+2]" if(owner) if(owner.dna.species.use_skintones && owner.dna.features["genitals_use_skintone"])