Skip to content

Commit

Permalink
Added missing Detect Lesser Invisibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Softrix committed May 20, 2023
1 parent 0b8ef2e commit 9b6ce6b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ Run the mod when ever you wish, if nothing is buffed, there is no penalty or coo
- Checks buffs and rebuffs you, raid, party members and pets.
- Setup your own buff templates (Solo, Party, Raid, Battleground, MC, Onyxia, BWL, AQ, ZG, Custom 1-5)
- Auto switch templates when playing solo, in a party or raid etc.
- Auto switch Gathering Trackers such as Find Herbs, Find Minerals and Find Fish
- Individual setup for each buff.
- Supports group buffs: 'Gift of the Wild'/'Arcane Brilliance'/'Prayer of Fortitude'/'Prayer of Spirit', incl. group size and reagence checks.
- Supports class buffs: all greater blessings of the Paladin.
- Supports self buffs.
- Supports weapon buffs (individual for main and off hand): Shaman, all poisons (Rogue), all stones and oils, incl. reagence checks.
- Supports character level based buffs.
- Supports tracking abilities.
- Auto switch Gathering Trackers such as Find Herbs, Find Minerals and Find Fish
- Reminder if a buff is missing (Splash/chat/sound).
- ReBuff Timers.
- Scrollwheel or only one key is needed.
Expand Down
4 changes: 3 additions & 1 deletion SmartBuff.buffs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ function SMARTBUFF_InitSpellIDs()
SMARTBUFF_CREATESPELLS = GetSpellInfo(2362); --"Create Spellstone"
SMARTBUFF_CREATEFIRES = GetSpellInfo(6366); --"Create Firestone"
-- other
SMARTBUFF_LOCKLESSERINVIS = GetSpellInfo(6512); --"Detect Lesser Invisibility"
SMARTBUFF_LOCKINVISIBILITY = GetSpellInfo(132); --"Detect Invisibility"
SMARTBUFF_LOCKSENSEDEMONS = GetSpellInfo(5500); --"Sense Demons"

Expand Down Expand Up @@ -950,7 +951,8 @@ function SMARTBUFF_InitSpellList()
{SMARTBUFF_FELARMOR, -1, SMARTBUFF_CONST_SELF},
{SMARTBUFF_LOCKSENSEDEMONS, -1, SMARTBUFF_CONST_SELF},
{SMARTBUFF_UNENDINGBREATH, 10, SMARTBUFF_CONST_GROUP, {16}, "HPET;WPET;DKPET"},
{SMARTBUFF_LOCKINVISIBILITY, 10, SMARTBUFF_CONST_GROUP, {16}, "HPET;WPET;DKPET"},
{SMARTBUFF_LOCKLESSERINVIS, 10, SMARTBUFF_CONST_GROUP, {26}, "HPET;WPET;DKPET"},
{SMARTBUFF_LOCKINVISIBILITY, 10, SMARTBUFF_CONST_GROUP, {26}, "HPET;WPET;DKPET"},
-- pets
{SMARTBUFF_SUMMONINFERNAL, -1, SMARTBUFF_CONST_SELF, nil, S.CheckPet},
{SMARTBUFF_SUMMONFELHUNTER, -1, SMARTBUFF_CONST_SELF, nil, S.CheckPet},
Expand Down
3 changes: 2 additions & 1 deletion localization.en.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ SMARTBUFF_WHATSNEW = "\n\n|cffffffff Whats new:|r\n\n"
.." release to ensure addon is initialised correctly.\n\n"
.." * Added support for a mage's conjured food, water\n"
.." and their mana gems.\n\n"
.." * Added support for hunters revive pet.\n\n"
.." * Added support for hunters call/revive pet.\n\n"
.." * Added more missing food and consumables, please\n"
.." report if you find anything not showing up.\n\n"
.." * Added automatic gathering switcher toggled by\n"
.." alt-left clicking minimap icon or in options.\n\n"
.." * Tons of fixes, too many to mention here.\n\n"
.."\n"
.." |c0000FF96Many thanks to Chris S., Samantha R. and\n"
.." Twilight's Sundries for their kind donations.\n"
Expand Down

0 comments on commit 9b6ce6b

Please sign in to comment.