From 93928b4ed2674cf50da005d9dc8895d417ebad34 Mon Sep 17 00:00:00 2001 From: Tim Robertson Date: Sat, 14 Sep 2019 11:20:18 -0400 Subject: [PATCH] Add support for polymorph ranks 2-4 --- SheepMonitor.toc | 2 +- auras.lua | 3 +++ changelog.txt | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/SheepMonitor.toc b/SheepMonitor.toc index dabae2a..21f2197 100755 --- a/SheepMonitor.toc +++ b/SheepMonitor.toc @@ -2,7 +2,7 @@ ## Title: Sheep Monitor ## Notes: Provides various methods of notification to help you keep track of your flock. ## Author: funkjedi -## Version: 1.20 +## Version: 1.21 ## SavedVariables: SheepMonitorDatabase ## OptionalDeps: Ace3, LibAuras, LibAuraInfo-1.0 diff --git a/auras.lua b/auras.lua index 3e93394..eaa388c 100755 --- a/auras.lua +++ b/auras.lua @@ -6,6 +6,9 @@ SheepMonitor.auras = {} -- theses are the cc auras that we track SheepMonitor.trackableAuras = { [118] = 'Interface\\Icons\\Spell_Nature_Polymorph', -- Polymorph + [12824] = 'Interface\\Icons\\Spell_Nature_Polymorph', -- Polymorph (Rank 2) + [12825] = 'Interface\\Icons\\Spell_Nature_Polymorph', -- Polymorph (Rank 3) + [12826] = 'Interface\\Icons\\Spell_Nature_Polymorph', -- Polymorph (Rank 4) [28272] = 'Interface\\Icons\\Spell_Magic_PolymorphPig', -- Polymorph (Pig) [28271] = 'Interface\\Icons\\Ability_Hunter_Pet_Turtle', -- Polymorph (Turtle) [61780] = 'Interface\\Icons\\Achievement_WorldEvent_Thanksgiving', -- Polymorph (Turkey) diff --git a/changelog.txt b/changelog.txt index 9e316f1..c63f2d0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +1.21 +- added support for Polymorph (Rank 2), Polymorph (Rank 3) and Polymorph (Rank 4) + 1.20 - updated for classic (tested only with Polymorph but others should/may work)