diff --git a/zone/bot.cpp b/zone/bot.cpp index 1972836c6..3b8eeaab5 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -9919,7 +9919,7 @@ bool Bot::CanCastSpellType(uint16 spell_type, uint16 spell_id, Mob* tar) { case Archetype::Caster: if ( tar->IsBot() && - (tar->GetLevel() > tar->CastToBot()->GetStopMeleeLevel()) && + (tar->GetLevel() >= tar->CastToBot()->GetStopMeleeLevel()) && ( IsEffectInSpell(spell_id, SE_AttackSpeed) || IsEffectInSpell(spell_id, SE_ReverseDS) @@ -9983,7 +9983,7 @@ bool Bot::CanCastSpellType(uint16 spell_type, uint16 spell_id, Mob* tar) { case Archetype::Caster: if ( tar->IsBot() && - (tar->GetLevel() > tar->CastToBot()->GetStopMeleeLevel()) && + (tar->GetLevel() >= tar->CastToBot()->GetStopMeleeLevel()) && ( IsEffectInSpell(spell_id, SE_AttackSpeed) || IsEffectInSpell(spell_id, SE_ReverseDS)