diff --git a/Glamourer/Interop/MetaService.cs b/Glamourer/Interop/MetaService.cs index 95077bd..7ed0948 100644 --- a/Glamourer/Interop/MetaService.cs +++ b/Glamourer/Interop/MetaService.cs @@ -67,6 +67,12 @@ public unsafe class MetaService : IDisposable private void HideHatDetour(DrawDataContainer* drawData, uint id, byte value) { + if (id != 0) + { + _hideHatGearHook.Original(drawData, id, value); + return; + } + Actor actor = drawData->Parent; var v = value == 0; _headGearEvent.Invoke(actor, ref v);