You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
576 B

4 years ago
--TOC version 90200
NarciConstants = {
--Constant
--Auto-update
Animation = {
4 years ago
MaxAnimationID = 1681,
},
Soulbinds = {
MaxRow = 12, --8 before 9.1
}
3 years ago
};
do
local _, addon = ...
if addon.IsDragonflight() then
local _, _, _, tocVersion = GetBuildInfo();
local maxAnimID;
if tocVersion and tocVersion >= 100100 then
maxAnimID = 1737;
else
maxAnimID = 1757;
end
3 years ago
NarciConstants.Animation.MaxAnimationID = maxAnimID;
end
end