removed regression
Cette révision appartient à :
Parent
199fd9cd09
révision
176330e352
3 fichiers modifiés avec 13 ajouts et 12 suppressions
|
@ -1,6 +1,6 @@
|
||||||
## Interface: 20501
|
## Interface: 20501
|
||||||
## Title: Button Forge |cff69f0d1(Classic BC)|r
|
## Title: Button Forge |cff69f0d1(Classic-TBC)|r
|
||||||
## Version: 1.0.3-classic-BC
|
## Version: 1.0.5-classic-TBC
|
||||||
## Author: Massiner of Nathrezim, Albirew
|
## Author: Massiner of Nathrezim, Albirew
|
||||||
## Notes: Add as many or few extra Action Bars and Buttons to your user interface to complement the standard (or other) Action Bars
|
## Notes: Add as many or few extra Action Bars and Buttons to your user interface to complement the standard (or other) Action Bars
|
||||||
## SavedVariables: ButtonForgeGlobalSettings, ButtonForgeGlobalProfiles, ButtonForgeGlobalBackup
|
## SavedVariables: ButtonForgeGlobalSettings, ButtonForgeGlobalProfiles, ButtonForgeGlobalBackup
|
||||||
|
|
|
@ -10,7 +10,7 @@ local Const = BFConst;
|
||||||
Const.SUMMON_RANDOM_FAVORITE_MOUNT_SPELL = 150544;
|
Const.SUMMON_RANDOM_FAVORITE_MOUNT_SPELL = 150544;
|
||||||
Const.SUMMON_RANDOM_FAVORITE_MOUNT_ID = 268435455;
|
Const.SUMMON_RANDOM_FAVORITE_MOUNT_ID = 268435455;
|
||||||
Const.Version = 1.0;
|
Const.Version = 1.0;
|
||||||
Const.VersionMinor = 0.2;
|
Const.VersionMinor = 0.5;
|
||||||
Const.MAX_ACCOUNT_MACROS = 120;
|
Const.MAX_ACCOUNT_MACROS = 120;
|
||||||
Const.ButtonNaming = "ButtonForge"
|
Const.ButtonNaming = "ButtonForge"
|
||||||
Const.ButtonSeq = 1; --This value will increment (so not technically a const...)
|
Const.ButtonSeq = 1; --This value will increment (so not technically a const...)
|
||||||
|
|
19
Util.lua
19
Util.lua
|
@ -1888,15 +1888,16 @@ function Util.CacheCompanions()
|
||||||
Util.Critters[Name] = i;
|
Util.Critters[Name] = i;
|
||||||
end]]
|
end]]
|
||||||
|
|
||||||
-- Util.Mounts = {};
|
Util.Mounts = {};
|
||||||
-- for i, mountID in pairs(C_MountJournal.GetMountIDs()) do
|
--[[
|
||||||
-- local creatureName, spellID = C_MountJournal.GetMountInfoByID(mountID);
|
for i, mountID in pairs(C_MountJournal.GetMountIDs()) do
|
||||||
-- if (not creatureName) then
|
local creatureName, spellID = C_MountJournal.GetMountInfoByID(mountID);
|
||||||
-- return;
|
if (not creatureName) then
|
||||||
-- end
|
return;
|
||||||
-- Util.Mounts[spellID] = mountID;
|
end
|
||||||
-- end
|
Util.Mounts[spellID] = mountID;
|
||||||
-- Util.CompanionsCached = true;
|
end
|
||||||
|
Util.CompanionsCached = true;]]
|
||||||
end
|
end
|
||||||
|
|
||||||
function Util.LookupCompanion(Name)
|
function Util.LookupCompanion(Name)
|
||||||
|
|
Référencer dans un nouveau ticket