Changeset - r2702:90b33b805c8a
[Not reviewed]
master
0 2 0
truelight - 19 years ago 2005-11-29 16:06:06
truelight@openttd.org
(svn r3246) -Fix: small glitch in ai_network_client code (network_client.c)
-Fix: make sure this glitch can never happen again (ai.c)
2 files changed with 4 insertions and 2 deletions:
0 comments (0 inline, 0 general)
ai/ai.c
Show inline comments
 
@@ -250,6 +250,8 @@ void AI_LoadAIControl(void)
 
 */
 
void AI_StartNewAI(PlayerID player)
 
{
 
	assert(player < MAX_PLAYERS);
 

	
 
#ifdef GPMI
 
	/* Keep this in a different IF, because the function can turn _ai.gpmi off!! */
 
	if (_ai.gpmi && _ai.gpmi_mod == NULL)
network_client.c
Show inline comments
 
@@ -346,8 +346,8 @@ DEF_CLIENT_RECEIVE_COMMAND(PACKET_SERVER
 
	if (index == _network_own_client_index) {
 
		_network_playas = playas;
 

	
 
		/* Are we a ai-network-client? */
 
		if (_ai.network_client) {
 
		/* Are we a ai-network-client? Are we not joining as a SPECTATOR (playas == 0, means SPECTATOR) */
 
		if (_ai.network_client && playas != 0) {
 
			if (_ai.network_playas == OWNER_SPECTATOR)
 
				AI_StartNewAI(playas - 1);
 

	
0 comments (0 inline, 0 general)