diff --git a/src/botlib.cpp b/src/botlib.cpp index 7c6f79d..efbf192 100644 --- a/src/botlib.cpp +++ b/src/botlib.cpp @@ -1599,7 +1599,7 @@ void Bot::overrideConditions () { } // special handling for reloading - if (m_reloadState != Reload::None && m_isReloading && !isInNarrowPlace ()) { + if (getCurrentTaskId () == Task::Normal && m_reloadState != Reload::None && m_isReloading && !isInNarrowPlace ()) { if (m_seeEnemyTime + 2.5f < game.time () && (m_states & (Sense::SuspectEnemy | Sense::HearingEnemy))) { m_moveSpeed = m_fearLevel > m_agressionLevel ? 0.0f : getShiftSpeed (); m_navTimeset = game.time ();