equal
deleted
inserted
replaced
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 |