From b77a1140e38e7bdbc0d61e852fe26f00cf5e354c Mon Sep 17 00:00:00 2001 From: Ian Kerins Date: Sun, 29 Nov 2020 18:47:37 -0500 Subject: [PATCH] Fix "no events found for Hawk" error Hawk is mapped in [`cSpellIDToSpecialID`](https://github.com/cdmichaelb/Outfitter/blob/4039d5d392421aae46b3d893860f4fee72f08722/Outfitter.lua#L1036-L1054) but not in `cSpecialIDEvents` so its events are currently not handled. --- Outfitter.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Outfitter.lua b/Outfitter.lua index da9f5cc..4da5555 100644 --- a/Outfitter.lua +++ b/Outfitter.lua @@ -954,6 +954,7 @@ Outfitter.cSpecialIDEvents = GhostWolf = {Equip = "GHOST_WOLF", Unequip = "NOT_GHOST_WOLF"}, Feigning = {Equip = "FEIGN_DEATH", Unequip = "NOT_FEIGN_DEATH"}, + Hawk = {Equip = "HAWK", Unequip = "NOT_HAWK"}, Evocate = {Equip = "EVOCATE", Unequip = "NOT_EVOCATE"},