diff -r 9b21c21052fa -r a84fc1be9e3b bin/ai/regression/regression.nut --- a/bin/ai/regression/regression.nut Sun Mar 02 13:19:08 2008 +0000 +++ b/bin/ai/regression/regression.nut Mon Mar 03 16:15:24 2008 +0000 @@ -355,6 +355,14 @@ print(" GetLocation(): " + AIIndustry.GetLocation(i)); print(" GetProduction(): " + AIIndustry.GetProduction(i, 1)); print(" IsCargoAccepted(): " + AIIndustry.IsCargoAccepted(i, 1)); + + local cargo_list = AICargoList(); + for (local j = cargo_list.Begin(); cargo_list.HasNext(); j = cargo_list.Next()) { + if (AIIndustry.GetProduction(i, j) > 0) { + print(" GetLastMonthProduction(): " + AIIndustry.GetLastMonthProduction(i, j)); + print(" GetLastMonthTransported(): " + AIIndustry.GetLastMonthTransported(i, j)); + } + } } print(" Valid Industries: " + j); print(" GetIndustryCount(): " + AIIndustry.GetIndustryCount());