From e84138af22abc40d3ebd993eba4103ccf3b2997f Mon Sep 17 00:00:00 2001 From: truebrain Date: Thu, 15 Jan 2009 14:37:44 +0000 Subject: (svn r15090) -Add [NoAI] [API CHANGE]: info.nut/library.nut now requires a function GetShortName(), which should return a 4 (four) character string, unique throughout the world. This id is simular to a GRFid. --- bin/ai/regression/regression_info.nut | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/ai/regression/regression_info.nut') diff --git a/bin/ai/regression/regression_info.nut b/bin/ai/regression/regression_info.nut index 212f2a50a..5eb8201c7 100644 --- a/bin/ai/regression/regression_info.nut +++ b/bin/ai/regression/regression_info.nut @@ -3,6 +3,7 @@ class Regression extends AIInfo { function GetAuthor() { return "OpenTTD NoAI Developers Team"; } function GetName() { return "Regression"; } + function GetShortName() { return "REGR"; } 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; } function GetDate() { return "2007-03-18"; } -- cgit v1.2.3-54-g00ecf