File diff r4849:41dc3967353a → r4850:7a78073de588
ai/ai.c
Show inline comments
 
@@ -210,13 +210,13 @@ void AI_RunGameLoop(void)
 

	
 
/**
 
 * A new AI sees the day of light. You can do here what ever you think is needed.
 
 */
 
void AI_StartNewAI(PlayerID player)
 
{
 
	assert(player < MAX_PLAYERS);
 
	assert(IsValidPlayer(player));
 

	
 
	/* Called if a new AI is booted */
 
	_ai_player[player].active = true;
 
}
 

	
 
/**