(svn r13439) [NoAI] -Fix: set svn props and keywords, and fix Author and Version noai
authortruebrain
Tue, 10 Jun 2008 14:08:39 +0000
branchnoai
changeset 10888 8a74bb2691b0
parent 10887 5c81038449f2
child 10889 ecb77cfc4a10
(svn r13439) [NoAI] -Fix: set svn props and keywords, and fix Author and Version
bin/ai/regression/regression_info.nut
bin/ai/wrightai/info.nut
bin/ai/wrightai/main.nut
--- a/bin/ai/regression/regression_info.nut	Tue Jun 10 09:56:56 2008 +0000
+++ b/bin/ai/regression/regression_info.nut	Tue Jun 10 14:08:39 2008 +0000
@@ -1,5 +1,5 @@
 class Regression extends AIInfo {
-	function GetAuthor()      { return "OpenTTD Dev Team"; }
+	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
 	function GetName()        { return "Regression"; }
 	function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
 	function GetVersion()     { return 1; }
--- a/bin/ai/wrightai/info.nut	Tue Jun 10 09:56:56 2008 +0000
+++ b/bin/ai/wrightai/info.nut	Tue Jun 10 14:08:39 2008 +0000
@@ -1,8 +1,10 @@
+/* $Id$ */
+
 class WrightAI extends AIInfo {
-	function GetAuthor()      { return "OpenTTD Dev Team"; }
+	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
 	function GetName()        { return "WrightAI"; }
 	function GetDescription() { return "A simple AI that tries to beat you with only aircrafts"; }
-	function GetVersion()     { return 1.1; }
+	function GetVersion()     { return 2; }
 	function GetDate()        { return "2008-02-24"; }
 	function CreateInstance() { return "WrightAI"; }
 }
--- a/bin/ai/wrightai/main.nut	Tue Jun 10 09:56:56 2008 +0000
+++ b/bin/ai/wrightai/main.nut	Tue Jun 10 14:08:39 2008 +0000
@@ -1,3 +1,4 @@
+/* $Id$ */
 
 class WrightAI extends AIController {
 	name = null;