fix
+
+-- [Quest] Tempering The Blade -- https://db.rising-gods.de/?quest=24560
+DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=69922 AND `ConditionTypeOrReference`=29;
+INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
+(17, 0,69922, 0, 0, 29, 0, 37094, 15, 0, 0, 0, 0, '', 'Temper Quel\'Delar needs 10 yards range to triggernpc');
+
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index ace503a1df..341ee694be 100644
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -5086,6 +5086,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_1].Effect = 0;
});
+ // Temper Quel'Delar
+ ApplySpellFix({ 69922 }, [](SpellInfo* spellInfo)
+ {
+ spellInfo->AttributesEx2 |= SPELL_ATTR2_CAN_TARGET_NOT_IN_LOS;
+ });
+
// Quest Misc Addition - END
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{