From 4395fd8da6640de55604158ba9e15e0d0c50b15f Mon Sep 17 00:00:00 2001 From: killerwife Date: Mon, 15 Jul 2024 23:49:05 +0200 Subject: [PATCH] Restrict torch spell targets --- sql/base/dbc/cmangos_fixes/Spell.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sql/base/dbc/cmangos_fixes/Spell.sql b/sql/base/dbc/cmangos_fixes/Spell.sql index 4fa265b8933..0ff2b7d870c 100644 --- a/sql/base/dbc/cmangos_fixes/Spell.sql +++ b/sql/base/dbc/cmangos_fixes/Spell.sql @@ -3574,6 +3574,9 @@ INSERT INTO spell_template(Id, Category, Dispel, Mechanic, Attributes, Attribute -- fixes error due to being used by items UPDATE spell_template SET Speed=0 WHERE Id IN(44333); +-- Torch 58121 +UPDATE spell_template SET MaxAffectedTargets = 1 WHERE id = 58121; + -- ============================================================ -- Missing WotLK Achievement Spells -- ============================================================