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:
Shauren
2025-02-20 13:51:31 +01:00
parent 375b43ee9e
commit 48baec04df
4 changed files with 30 additions and 39 deletions

View 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;