Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
DB/World: Fix missing pandaren hunter action bar #1189
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightprince authored Nov 10, 2023
1 parent 1a4c2f4 commit e2f90bc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sql/updates/world/world_2023_11_10_12_19.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DELETE FROM `playercreateinfo_spell` WHERE `racemask`=8388608 AND `classmask`=4 AND `Spell`=982;
INSERT INTO `playercreateinfo_spell` (`racemask`, `classmask`, `Spell`, `Note`) VALUES
(8388608, 4, 982, 'Revive Pet');

DELETE FROM `playercreateinfo_spell` WHERE `racemask`=8388608 AND `classmask`=4 AND `Spell`=3044;
INSERT INTO `playercreateinfo_spell` (`racemask`, `classmask`, `Spell`, `Note`) VALUES
(8388608, 4, 3044, 'Arcane Shot');

DELETE FROM `playercreateinfo_action` WHERE `race`=24 AND `class`=3;
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(24, 3, 11, 982, 0),
(24, 3, 10, 9, 48),
(24, 3, 9, 107079, 0),
(24, 3, 0, 3044, 0);

0 comments on commit e2f90bc

Please sign in to comment.