Skip to content

Commit 62e9880

Browse files
committed
Merge remote-tracking branch 'remotes/origin/buffalo-0.5.0-sync' into main
2 parents 73162cf + b3b71f7 commit 62e9880

9 files changed

Lines changed: 23 additions & 42 deletions

File tree

Buffalo/Buffalo-Classic.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Title: Buffalo - One-button buffing
22
## Notes: Smart addon to buff party / raid members
3-
## Version: 0.5.0
3+
## Version: 0.5.1
44
## Author: Mimma @ <EU-Pyrewood Village>
55
## Interface: 11403
66
## SavedVariables: Buffalo_Options

Buffalo/Buffalo-Configuration.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ function Buffalo_InitializeBuffMatrix()
189189
local SpellName_Mage_ArcaneBrilliance = Buffalo_GetSpellName(23028);
190190
local SpellName_Mage_AmplifyMagic = Buffalo_GetSpellName(10170);
191191
local SpellName_Mage_DampenMagic = Buffalo_GetSpellName(10174);
192+
local SpellName_Mage_MoltenArmor = Buffalo_GetSpellName(30482);
192193
local SpellName_Mage_MageArmor = Buffalo_GetSpellName(22783);
193194
local SpellName_Mage_IceArmor = Buffalo_GetSpellName(10220);
194195
local SpellName_Mage_IceBarrier = Buffalo_GetSpellName(13033);
@@ -233,6 +234,16 @@ function Buffalo_InitializeBuffMatrix()
233234
["FAMILY"] = "AmplifyDampen"
234235
};
235236

237+
local Mage_MoltenArmor = {
238+
["BITMASK"] = 0x0800,
239+
["ICONID"] = 132221,
240+
["SPELLID"] = Buffalo_GetSpellID(SpellName_Mage_MoltenArmor),
241+
["CLASSES"] = BUFFALO_CLASS_MAGE,
242+
["PRIORITY"] = 14,
243+
["GROUP"] = false,
244+
["FAMILY"] = "Armor"
245+
};
246+
236247
local Mage_MageArmor = {
237248
["BITMASK"] = 0x0100,
238249
["ICONID"] = 135991,
@@ -267,6 +278,7 @@ function Buffalo_InitializeBuffMatrix()
267278
matrix[SpellName_Mage_ArcaneIntellect] = Mage_ArcaneIntellect;
268279
matrix[SpellName_Mage_AmplifyMagic] = Mage_AmplifyMagic;
269280
matrix[SpellName_Mage_DampenMagic] = Mage_DampenMagic;
281+
matrix[SpellName_Mage_MoltenArmor] = Mage_MoltenArmor;
270282
matrix[SpellName_Mage_MageArmor] = Mage_MageArmor;
271283
matrix[SpellName_Mage_IceArmor] = Mage_IceArmor;
272284
matrix[SpellName_Mage_IceBarrier] = Mage_IceBarrier;

Buffalo/Buffalo-TBC.toc

Lines changed: 0 additions & 15 deletions
This file was deleted.

Buffalo/Buffalo-Wrath.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Title: Buffalo - One-button buffing
22
## Notes: Smart addon to buff party / raid members
3-
## Version: 0.5.0
3+
## Version: 0.5.1
44
## Author: Mimma @ <EU-Pyrewood Village>
55
## Interface: 30400
66
## SavedVariables: Buffalo_Options

Buffalo/Buffalo.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,6 @@ local function Buffalo_ScanRaid()
10091009
local scanPlayerBuffs = true;
10101010
local rosterInfo = roster[unitid];
10111011
if rosterInfo then
1012-
--local groupMask = CONFIG_AssignedBuffGroups[rosterInfo["Group"]];
10131012
local groupMask = assignedGroups[rosterInfo["Group"]];
10141013
groupMask = bit.bor(groupMask, CONFIG_AssignedBuffSelf);
10151014

@@ -1077,8 +1076,8 @@ local function Buffalo_ScanRaid()
10771076
buffMask = bit.bor(buffMask, buffInfo["BITMASK"]);
10781077
end;
10791078
end;
1080-
elseif A.addonExpansionLevel == 2 then
1081-
-- TBC:
1079+
elseif A.addonExpansionLevel > 1 then
1080+
-- TBC / WOTLK:
10821081
for n=1, GetNumTrackingTypes() do
10831082
local buffName, spellID, active = GetTrackingInfo(n);
10841083
if active then

Buffalo/Buffalo.toc

Lines changed: 0 additions & 15 deletions
This file was deleted.

Buffalo/Buffalo.wowproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<Content Include="Buffalo-GeneralConfig.xml">
3333
<SubType>Frame</SubType>
3434
</Content>
35-
<Content Include="Buffalo.toc">
35+
<Content Include="Buffalo-Wrath.toc">
3636
<SubType>TableOfContents</SubType>
3737
</Content>
3838
<Content Include="Buffalo.xml">
@@ -45,12 +45,6 @@
4545
<Content Include="Buffalo-Classic.toc">
4646
<SubType>TableOfContents</SubType>
4747
</Content>
48-
<Content Include="Buffalo-TBC.toc">
49-
<SubType>TableOfContents</SubType>
50-
</Content>
51-
<Content Include="Buffalo-Wrath.toc">
52-
<SubType>TableOfContents</SubType>
53-
</Content>
5448
<Content Include="DigamAddonLib.lua">
5549
<SubType>Code</SubType>
5650
</Content>

Buffalo/ReadMe.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ Priest PowerWordFortitude 53
8080

8181
Version history
8282
---------------
83+
Version 0.5.1
84+
* Added Molten Armor (mage) buff.
85+
* Bugfix: Find Herbs / Minerals was not detected correct in WotLK.
86+
* Removed TBC TOC file.
87+
88+
8389
Version 0.5.0
8490
* Fixed local text settings not being persisted.
8591
* Added support for Wrath of the Lich King Classic. Note: Buffalo still works in "one, buff, one group" mode.

Releases/Buffalo-0.5.1.zip

34.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)