From 16dd81695f1c492c34bf5f9735adef2ff51bf860 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sat, 15 Jul 2023 14:58:24 +0200 Subject: [PATCH] Fix hrothgar face display. --- Glamourer/Gui/Customization/CustomizationDrawer.Simple.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/Gui/Customization/CustomizationDrawer.Simple.cs b/Glamourer/Gui/Customization/CustomizationDrawer.Simple.cs index cd72f2d..991e94e 100644 --- a/Glamourer/Gui/Customization/CustomizationDrawer.Simple.cs +++ b/Glamourer/Gui/Customization/CustomizationDrawer.Simple.cs @@ -54,7 +54,7 @@ public partial class CustomizationDrawer { int value = _currentByte.Value; // Hrothgar face hack. - if (_currentIndex is CustomizeIndex.Face && _set.Race is Race.Hrothgar) + if (_currentIndex is CustomizeIndex.Face && _set.Race is Race.Hrothgar && value is > 4 and < 9) value -= 4; using var disabled = ImRaii.Disabled(_locked || _currentIndex is CustomizeIndex.Face && _lockedRedraw);