From b22f52acfab99cc120589dca7a3ad96bf229bebb Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Wed, 22 Apr 2020 17:38:51 +0200 Subject: [PATCH] Core/Spells: fixed build --- src/server/game/Spells/SpellEffects.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index ff6a2e1bb3a..ce082ae7b79 100644 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -4484,7 +4484,7 @@ void Spell::EffectPullTowards(SpellEffIndex effIndex) if (!std::isfinite(speedZ)) { - TC_LOG_ERROR("spells", "Spell %u with SPELL_EFFECT_PULL_TOWARDS called with invalid speedZ. %s", m_spellInfo->Id, GetDebugInfo().c_str()); + TC_LOG_ERROR("spells", "Spell %u with SPELL_EFFECT_PULL_TOWARDS called with invalid speedZ.", m_spellInfo->Id); return; } @@ -4520,7 +4520,7 @@ void Spell::EffectPullTowardsDest(SpellEffIndex effIndex) if (!std::isfinite(speedZ)) { - TC_LOG_ERROR("spells", "Spell %u with SPELL_EFFECT_PULL_TOWARDS_DEST called with invalid speedZ. %s", m_spellInfo->Id, GetDebugInfo().c_str()); + TC_LOG_ERROR("spells", "Spell %u with SPELL_EFFECT_PULL_TOWARDS_DEST called with invalid speedZ", m_spellInfo->Id); return; }