From 08aa31560b8043ce556fea81cb9ca67e5b4eaf47 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 21 Mar 2021 20:54:30 +0200 Subject: [PATCH] Fixes scaling mode toggle verb not persisting Fixes "switch scaling mode" verb not updating the mob var that the icon update code now relies on and therefore reverts the ingame toggled setting back to saved pref setting whenever icon update happens. --- code/modules/vore/eating/living_vr.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 00512aa264..b3ff9c2837 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -821,6 +821,7 @@ set category = "Preferences" set desc = "Switch sharp/fuzzy scaling for current mob." appearance_flags ^= PIXEL_SCALE + fuzzy = !fuzzy /mob/living/examine(mob/user, infix, suffix) . = ..()