* fix building talent string for hunter pets. the alternate spells (e.g. Dash & Swoop) must both be included * align talent order in build scripts talenticons, talentcalc with Profiler talent string builder * fix Shamans gaining 5% Parry by talent Spirit Weapons * cleanup
7 lines
351 B
SQL
7 lines
351 B
SQL
ALTER TABLE `aowow_profiler_pets`
|
|
MODIFY COLUMN `talents` varchar(22) DEFAULT NULL;
|
|
|
|
UPDATE `aowow_dbversion` SET `build` = CONCAT(IFNULL(`build`, ''), ' talenticons talentcalc');
|
|
|
|
-- flag all hunters as requiring update
|
|
UPDATE `aowow_profiler_profiles` SET `flags` = `flags` | 16, `lastupdated` = 0 WHERE `class` = 3 AND `realmGUID` IS NOT NULL;
|