diff --git a/Glamourer/State/StateListener.cs b/Glamourer/State/StateListener.cs index ebf7083..0a6e859 100644 --- a/Glamourer/State/StateListener.cs +++ b/Glamourer/State/StateListener.cs @@ -169,7 +169,7 @@ public class StateListener : IDisposable /// private void OnEquipmentLoading(Actor actor, EquipSlot slot, CharacterArmor armor) { - if (armor != actor.GetArmor(slot)) + if (!actor.Model.Valid || armor != actor.GetArmor(slot)) return; if (!actor.Identifier(_actors.AwaitedService, out var identifier)