removed regression

Cette révision appartient à :
Albirew 2021-05-25 19:18:40 +02:00
Parent 199fd9cd09
révision 176330e352
3 fichiers modifiés avec 13 ajouts et 12 suppressions

Voir le fichier

@ -1,6 +1,6 @@
## Interface: 20501
## Title: Button Forge |cff69f0d1(Classic BC)|r
## Version: 1.0.3-classic-BC
## Title: Button Forge |cff69f0d1(Classic-TBC)|r
## Version: 1.0.5-classic-TBC
## 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
## SavedVariables: ButtonForgeGlobalSettings, ButtonForgeGlobalProfiles, ButtonForgeGlobalBackup

Voir le fichier

@ -10,7 +10,7 @@ local Const = BFConst;
Const.SUMMON_RANDOM_FAVORITE_MOUNT_SPELL = 150544;
Const.SUMMON_RANDOM_FAVORITE_MOUNT_ID = 268435455;
Const.Version = 1.0;
Const.VersionMinor = 0.2;
Const.VersionMinor = 0.5;
Const.MAX_ACCOUNT_MACROS = 120;
Const.ButtonNaming = "ButtonForge"
Const.ButtonSeq = 1; --This value will increment (so not technically a const...)

Voir le fichier

@ -1888,15 +1888,16 @@ function Util.CacheCompanions()
Util.Critters[Name] = i;
end]]
-- Util.Mounts = {};
-- for i, mountID in pairs(C_MountJournal.GetMountIDs()) do
-- local creatureName, spellID = C_MountJournal.GetMountInfoByID(mountID);
-- if (not creatureName) then
-- return;
-- end
-- Util.Mounts[spellID] = mountID;
-- end
-- Util.CompanionsCached = true;
Util.Mounts = {};
--[[
for i, mountID in pairs(C_MountJournal.GetMountIDs()) do
local creatureName, spellID = C_MountJournal.GetMountInfoByID(mountID);
if (not creatureName) then
return;
end
Util.Mounts[spellID] = mountID;
end
Util.CompanionsCached = true;]]
end
function Util.LookupCompanion(Name)