From 5b160915e5973762d26d84f6c450093c1635970b Mon Sep 17 00:00:00 2001 From: einard85 <64213213+einard85@users.noreply.github.com> Date: Sat, 3 Aug 2024 21:15:12 +0200 Subject: [PATCH] Fixed a typo Caused players pet not be detected after a boss kill. -Ratatosk --- boot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.lua b/boot.lua index 33a8be7b..4a133db7 100644 --- a/boot.lua +++ b/boot.lua @@ -1559,7 +1559,7 @@ function Details222.ClassCache.MakeCache() end Details222.UnitIdCache.Party = {"player"} -Details222.UnitIdCache.PartyPet = {"playetpet"} +Details222.UnitIdCache.PartyPet = {"playerpet"} for i = 1, 4 do table.insert(Details222.UnitIdCache.Party, "party" .. i) table.insert(Details222.UnitIdCache.PartyPet, "partypet" .. i)