src/ai/ai.cpp
changeset 9652 0405e98d8e96
parent 9413 7042a8ec3fa8
child 9659 187142ff9b6c
equal deleted inserted replaced
9651:1285c0b3a4de 9652:0405e98d8e96
   210 /**
   210 /**
   211  * A new AI sees the day of light. You can do here what ever you think is needed.
   211  * A new AI sees the day of light. You can do here what ever you think is needed.
   212  */
   212  */
   213 void AI_StartNewAI(PlayerID player)
   213 void AI_StartNewAI(PlayerID player)
   214 {
   214 {
   215 	assert(IsValidPlayer(player));
   215 	assert(IsValidPlayerID(player));
   216 
   216 
   217 	/* Called if a new AI is booted */
   217 	/* Called if a new AI is booted */
   218 	_ai_player[player].active = true;
   218 	_ai_player[player].active = true;
   219 }
   219 }
   220 
   220