Second wave of Blind fixes for WotLK Classic, I don't have access to beta so these fixes may work or not

This commit is contained in:
Tercio Jose
2022-07-14 21:13:42 -03:00
parent ebb9c10a98
commit f06c8e2797
3 changed files with 13 additions and 1 deletions
+4
View File
@@ -116,6 +116,10 @@ local roleBySpecTextureName = {
WarriorArms = "DAMAGER",
WarriorFury = "DAMAGER",
WarriorProtection = "TANK",
DeathKnightBlood = "TANK",
DeathKnightFrost = "DAMAGER",
DeathKnightUnholy = "DAMAGER",
}
--classic, tbc and wotlk role guesser based on the weights of each talent tree
+1 -1
View File
@@ -9,7 +9,7 @@
_detalhes.build_counter = 9825
_detalhes.alpha_build_counter = 9825 --if this is higher than the regular counter, use it instead
_detalhes.bcc_counter = 41
_detalhes.wotlk_counter = 1
_detalhes.wotlk_counter = 2
_detalhes.dont_open_news = true
_detalhes.game_version = version
_detalhes.userversion = version .. _detalhes.build_counter
+8
View File
@@ -2699,6 +2699,10 @@ if (DetailsFramework.IsTBCWow()) then
WarriorArms = 71,
WarriorFury = 72,
WarriorProtection = 73,
DeathKnightBlood = 250,
DeathKnightFrost = 251,
DeathKnightUnholy = 252,
}
@@ -2739,6 +2743,10 @@ if (DetailsFramework.IsTBCWow()) then
[71] = "WarriorArms",
[72] = "WarriorFury",
[73] = "WarriorProtection",
[250] = "DeathKnightBlood",
[251] = "DeathKnightFrost",
[252] = "DeathKnightUnholy",
}
function Details.IsValidSpecId (specId)