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
29 lines
576 B
--TOC version 90200
|
|
|
|
NarciConstants = {
|
|
--Constant
|
|
|
|
|
|
--Auto-update
|
|
Animation = {
|
|
MaxAnimationID = 1681,
|
|
},
|
|
|
|
Soulbinds = {
|
|
MaxRow = 12, --8 before 9.1
|
|
}
|
|
};
|
|
|
|
do
|
|
local _, addon = ...
|
|
if addon.IsDragonflight() then
|
|
local _, _, _, tocVersion = GetBuildInfo();
|
|
local maxAnimID;
|
|
if tocVersion and tocVersion >= 100206 then
|
|
maxAnimID = 1776;
|
|
else
|
|
maxAnimID = 1757;
|
|
end
|
|
NarciConstants.Animation.MaxAnimationID = maxAnimID;
|
|
end
|
|
end
|