diff --git a/src/botlib.cpp b/src/botlib.cpp index 351a652..412b572 100644 --- a/src/botlib.cpp +++ b/src/botlib.cpp @@ -2985,11 +2985,7 @@ void Bot::frame () { // run bot command on twice speed if (m_commandDelay.time <= timestamp) { - const bool nonStandardGameMode = game.is (GameFlags::CSDM | GameFlags::FreeForAll | GameFlags::ZombieMod); - - if (m_botMovement || nonStandardGameMode || pev->deadflag == DEAD_DYING) { - runMovement (); - } + runMovement (); m_commandDelay.time = timestamp + m_commandDelay.interval; }