Changeset - r25343:065a44e049bf
[Not reviewed]
master
0 2 0
Loïc Guilloux - 3 years ago 2021-05-01 14:19:14
glx22@users.noreply.github.com
Fix: Don't consider regression AIs when starting a random AI (#9164)
2 files changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
regression/regression/info.nut
Show inline comments
 
@@ -7,6 +7,7 @@ class Regression extends AIInfo {
 
	function GetAPIVersion()  { return "1.12"; }
 
	function GetDate()        { return "2007-03-18"; }
 
	function CreateInstance() { return "Regression"; }
 
	function UseAsRandomAI()  { return false; }
 
}
 

	
 
RegisterAI(Regression());
regression/stationlist/info.nut
Show inline comments
 
@@ -7,6 +7,7 @@ class StationList extends AIInfo {
 
	function GetAPIVersion()  { return "1.12"; }
 
	function GetDate()        { return "2007-03-18"; }
 
	function CreateInstance() { return "StationList"; }
 
	function UseAsRandomAI()  { return false; }
 
}
 

	
 
RegisterAI(StationList());
0 comments (0 inline, 0 general)