src/ai/ai.cpp
branchnoai
changeset 10715 6bdf79ffb022
parent 10650 30fc5395b1b8
child 10718 7e9d9e40e16f
--- a/src/ai/ai.cpp	Mon May 26 11:36:42 2008 +0000
+++ b/src/ai/ai.cpp	Mon May 26 13:52:59 2008 +0000
@@ -44,14 +44,14 @@
 	if (!_ai_enabled) return;
 
 	/* Don't do anything if we are a network-client, or the AI has been disabled */
-	if (_networking && (!_network_server || !_patches.ai_in_multiplayer)) return;
+	if (_networking && (!_network_server || !_settings.ai.ai_in_multiplayer)) return;
 
 	/* New tick */
 	_ai_frame_counter++;
 
 	/* Make sure the AI follows the difficulty rule.. */
-	assert(_opt.diff.competitor_speed <= 4);
-	if ((_ai_frame_counter & ((1 << (4 - _opt.diff.competitor_speed)) - 1)) != 0) return;
+	assert(_settings.difficulty.competitor_speed <= 4);
+	if ((_ai_frame_counter & ((1 << (4 - _settings.difficulty.competitor_speed)) - 1)) != 0) return;
 
 	/* Check for AI-client (so joining a network with an AI) */
 	if (!_networking || _network_server) {
@@ -199,7 +199,7 @@
 	/* If in network, and server, possible AI */
 	if (_networking && _network_server) {
 		/* Do we want AIs in multiplayer? */
-		if (!_patches.ai_in_multiplayer) return false;
+		if (!_settings.ai.ai_in_multiplayer) return false;
 	}
 
 	return true;