From 56f2d8dcc009ca8518260875f4889963ebe3b7c9 Mon Sep 17 00:00:00 2001 From: Casey Date: Fri, 2 Sep 2022 01:13:01 -0400 Subject: [PATCH] Merge pull request #13625 from Verkister/patch-119 Fixes wonky scaling on empty voremob icon updates --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index 8bf15cea64..ed04ba5b65 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -91,6 +91,7 @@ voremob_awake = TRUE update_fullness() if(!vore_fullness) + update_transform() return 0 else if((stat == CONSCIOUS) && (!icon_rest || !resting || !incapacitated(INCAPACITATION_DISABLED)) && (vore_icons & SA_ICON_LIVING)) icon_state = "[icon_living]-[vore_fullness]"