Profiler/Talents (#315)

* fix usage of active talent spec
This commit is contained in:
Sarjuuk
2021-11-19 20:30:16 +01:00
parent a1f0f3d30d
commit f3f8dacef9
2 changed files with 3 additions and 2 deletions

View File

@@ -404,7 +404,7 @@ class Profiler
'talentbuild2' => '',
'glyphs1' => '',
'glyphs2' => '',
'activespec' => $char['activespec'],
'activespec' => $char['activeTalentGroup'],
'guild' => null,
'guildRank' => null,
'gearscore' => 0,
@@ -431,7 +431,7 @@ class Profiler
{
$_ = DB::Aowow()->selectCol('SELECT spell AS ARRAY_KEY, MAX(IF(spell IN (?a), `rank`, 0)) FROM ?_talents WHERE class = ?d AND tab = ?d GROUP BY id ORDER BY row, col ASC', !empty($t[$i]) ? $t[$i] : [0], $char['class'], $j);
$data['talentbuild'.($i + 1)] .= implode('', $_);
if ($char['activespec'] == $i)
if ($data['activespec'] == $i)
$data['talenttree'.($j + 1)] = array_sum($_);
}