Skip to content
5 changes: 3 additions & 2 deletions src/game/server/tf/bot/behavior/tf_bot_scenario_monitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Action< CTFBot > *CTFBotScenarioMonitor::DesiredScenarioAndClassAction( CTFBot *
}
#endif // TF_RAID_MODE

if ( TFGameRules()->IsMannVsMachineMode() )
if ( TFGameRules()->IsMannVsMachineMode() && me->GetTeamNumber() == TF_TEAM_BLUE) // Only use this specialized AI for BLU bots
{
if ( me->IsPlayerClass( TF_CLASS_SPY ) )
{
Expand Down Expand Up @@ -218,7 +218,8 @@ Action< CTFBot > *CTFBotScenarioMonitor::DesiredScenarioAndClassAction( CTFBot *
}

// capture the flag
return new CTFBotFetchFlag;
// The normal TFBot AI alreeady captures the flag. See line 250 - Siobhan-Saoirse
//return new CTFBotFetchFlag;
}

if ( me->IsPlayerClass( TF_CLASS_SPY ) )
Expand Down