# HG changeset patch # User truebrain # Date 1213106919 0 # Node ID 8a74bb2691b0434816510be02ad5bd0a426612e9 # Parent 5c81038449f22c0d3df3e01f19629831fff203d4 (svn r13439) [NoAI] -Fix: set svn props and keywords, and fix Author and Version diff -r 5c81038449f2 -r 8a74bb2691b0 bin/ai/regression/regression_info.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; } diff -r 5c81038449f2 -r 8a74bb2691b0 bin/ai/wrightai/info.nut --- 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"; } } diff -r 5c81038449f2 -r 8a74bb2691b0 bin/ai/wrightai/main.nut --- 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;