From 9de233faec38d051daf907371795b65f93e95a81 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sat, 29 Jul 2023 02:23:06 +0200 Subject: [PATCH] Fix NPC automation not applying correctly? --- Glamourer/Automation/AutoDesignApplier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/Automation/AutoDesignApplier.cs b/Glamourer/Automation/AutoDesignApplier.cs index 68a55ce..84e228d 100644 --- a/Glamourer/Automation/AutoDesignApplier.cs +++ b/Glamourer/Automation/AutoDesignApplier.cs @@ -228,7 +228,7 @@ public class AutoDesignApplier : IDisposable identifier = _actors.AwaitedService.CreatePlayer(identifier.PlayerName, ushort.MaxValue); return _manager.EnabledSets.TryGetValue(identifier, out set); case IdentifierType.Retainer: - case IdentifierType.Special: + case IdentifierType.Npc: return _manager.EnabledSets.TryGetValue(identifier, out set); case IdentifierType.Owned: identifier = _actors.AwaitedService.CreateNpc(identifier.Kind, identifier.DataId);