mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 08:28:32 +01:00
Core/Players: Fixed wrong spell id of Seal of Righteousness being given to players who don't know Judgement of Light
Closes #30642
This commit is contained in:
8
sql/updates/world/3.3.5/2025_02_20_02_world.sql
Normal file
8
sql/updates/world/3.3.5/2025_02_20_02_world.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
UPDATE `playercreateinfo_action` SET `action`=20154 WHERE `action`=21084;
|
||||
|
||||
DELETE FROM `spell_ranks` WHERE `first_spell_id`=20154;
|
||||
INSERT INTO `spell_ranks` (`first_spell_id`, `spell_id`, `rank`) VALUES
|
||||
(20154,20154,1),
|
||||
(20154,21084,2);
|
||||
|
||||
UPDATE `trainer_spell` SET `SpellId`=10321 WHERE `SpellId`=20271;
|
||||
Reference in New Issue
Block a user