Fix #12973: Don't exclude high score after using sandbox
[openttd-github.git] / regression / stationlist / info.nut
bloba1a10466ddb8f2b599242d500ceb1124dab86090
1 class StationList extends AIInfo {
2 function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
3 function GetName() { return "StationList"; }
4 function GetShortName() { return "REGS"; }
5 function GetDescription() { return "This runs stationlist-tests on some commands. On the same map the result should always be the same."; }
6 function GetVersion() { return 1; }
7 function GetAPIVersion() { return "15"; }
8 function GetDate() { return "2007-03-18"; }
9 function CreateInstance() { return "StationList"; }
10 function UseAsRandomAI() { return false; }
13 RegisterAI(StationList());