mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Profiler/Prep:
* misc changes from profiler branch. No real changes on its own
This commit is contained in:
@@ -15,10 +15,25 @@ function talents()
|
||||
{
|
||||
// class: 0 => hunter pets
|
||||
for ($i = 1; $i < 6; $i++)
|
||||
DB::Aowow()->query(
|
||||
'REPLACE INTO ?_talents SELECT t.id, IF(tt.classMask <> 0, LOG(2, tt.classMask) + 1, 0), IF(tt.creaturefamilyMask <> 0, LOG(2, tt.creaturefamilyMask), tt.tabNumber), t.row, t.column, t.rank?d, ?d FROM dbc_talenttab tt JOIN dbc_talent t ON tt.id = t.tabId WHERE t.rank?d <> 0',
|
||||
$i, $i, $i
|
||||
);
|
||||
DB::Aowow()->query('
|
||||
REPLACE INTO
|
||||
?_talents
|
||||
SELECT
|
||||
t.id,
|
||||
IF(tt.classMask <> 0, LOG(2, tt.classMask) + 1, 0),
|
||||
tt.creatureFamilyMask,
|
||||
IF(tt.creaturefamilyMask <> 0, LOG(2, tt.creaturefamilyMask), tt.tabNumber),
|
||||
t.row,
|
||||
t.column,
|
||||
t.rank?d,
|
||||
?d
|
||||
FROM
|
||||
dbc_talenttab tt
|
||||
JOIN
|
||||
dbc_talent t ON tt.id = t.tabId
|
||||
WHERE
|
||||
t.rank?d <> 0
|
||||
', $i, $i, $i);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user