diff options
| author | Jeremy <Golrag@users.noreply.github.com> | 2025-07-12 14:13:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-12 14:13:34 +0200 |
| commit | d6882ce9515a83925d1c71fa606e3d8c62e0e088 (patch) | |
| tree | e733aedfbda9574c52aabc6cc1cbaa4a4ae15888 | |
| parent | 0e61ea0b1ab17210b0cbc135408ffb501a2dc5fe (diff) | |
DB/SpellsGroups: Add warrior stances (#31080)
| -rw-r--r-- | sql/updates/world/master/2025_07_12_00_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_07_12_00_world.sql b/sql/updates/world/master/2025_07_12_00_world.sql new file mode 100644 index 00000000000..46c2b3c1be9 --- /dev/null +++ b/sql/updates/world/master/2025_07_12_00_world.sql @@ -0,0 +1,11 @@ +SET @GROUP_ID := 1502; + +DELETE FROM `spell_group_stack_rules` WHERE `group_id`= @GROUP_ID; +INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES +(@GROUP_ID, 1); + +DELETE FROM `spell_group` WHERE `id` = @GROUP_ID; +INSERT INTO `spell_group` (`id`, `spell_id`) VALUES +(@GROUP_ID, 386208), -- Defensive Stance +(@GROUP_ID, 386196), -- Berserker Stance +(@GROUP_ID, 386164); -- Battle Stance |
