src/ai/core/ai.cpp
branchnoai
changeset 9365 c3d08e0b1083
parent 9361 7bb2bd22b16e
child 9383 817b07079052
--- a/src/ai/core/ai.cpp	Tue Mar 13 21:41:05 2007 +0000
+++ b/src/ai/core/ai.cpp	Tue Mar 13 21:55:22 2007 +0000
@@ -10,7 +10,7 @@
 #include "../../helpers.hpp"
 #include "ai.h"
 #include "ai_base.hpp"
-#include "../NoAI/NoAI.hpp"
+#include "../squirrel/squirrel.hpp"
 
 static AIController *_ai_player[MAX_PLAYERS];
 static uint _ai_frame_counter;
@@ -73,7 +73,7 @@
 	if (_networking && !_network_server) return;
 
 	/* Called if a new AI is booted */
-	_ai_player[player] = new NoAI();
+	_ai_player[player] = new Squirrel("SQNoAI");
 }
 
 /**