From 188b864d79b7c3f9382ad5c668ca39d67e14723d Mon Sep 17 00:00:00 2001 From: Jelle Meeus Date: Sat, 21 Sep 2024 18:48:04 +0200 Subject: [PATCH] fix(DB/ArgentTournament): Stabled Campaign Warhorse missing error message (#19926) * fix lance requirement error msg * ; --- data/sql/updates/pending_db_world/rev_1725899053676428516.sql | 4 ++++ src/server/scripts/Spells/spell_generic.cpp | 1 + 2 files changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1725899053676428516.sql diff --git a/data/sql/updates/pending_db_world/rev_1725899053676428516.sql b/data/sql/updates/pending_db_world/rev_1725899053676428516.sql new file mode 100644 index 000000000..082ce9d9e --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1725899053676428516.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeorReferenceiD` = 18 and `SourceGroup` = 34125 AND `ConditionValue1` = 62853; +DELETE FROM `spell_script_names` WHERE `spell_id`=63215 AND `ScriptName`='spell_gen_summon_tournament_mount'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (63215, 'spell_gen_summon_tournament_mount'); diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index 35488441d..b7b9f9ceb 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -3273,6 +3273,7 @@ enum TournamentMountsSpells 62785 - Summon Tournament Kodo 62786 - Summon Tournament Hawkstrider 62787 - Summon Tournament Warhorse + 63215 - Summon Campaign Charger 63663 - Summon Tournament Argent Charger 63791 - Summon Tournament Hawkstrider (Aspirant) 63792 - Summon Tournament Steed (Aspirant) */