mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-26 15:16:24 +00:00
fix(Core/Player): Weapon skill gain (#5961)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
INSERT INTO `version_db_characters` (`sql_rev`) VALUES ('1622121508190340200');
|
||||
|
||||
-- Set fist weapon skill equal to current unarmed skill value
|
||||
UPDATE `character_skills` `cs_unarmed` INNER JOIN `character_skills` `cs_fist` ON `cs_unarmed`.`guid` = `cs_fist`.`guid`
|
||||
SET `cs_fist`.`value` = `cs_unarmed`.`value`, `cs_fist`.`max` = `cs_unarmed`.`max`
|
||||
WHERE `cs_unarmed`.`skill` = 162 AND `cs_fist`.`skill` = 473;
|
||||
Reference in New Issue
Block a user