equal
deleted
inserted
replaced
235 list.Valuate(AIStationListCargoWaiting(1)); |
235 list.Valuate(AIStationListCargoWaiting(1)); |
236 print(" CargoWaiting(1) ListDump:"); |
236 print(" CargoWaiting(1) ListDump:"); |
237 for (local i = list.Begin(); list.HasNext(); i = list.Next()) { |
237 for (local i = list.Begin(); list.HasNext(); i = list.Next()) { |
238 print(" " + i + " => " + list.GetValue(i)); |
238 print(" " + i + " => " + list.GetValue(i)); |
239 } |
239 } |
|
240 |
|
241 list = AIStationVehicleList(0); |
|
242 |
|
243 print(""); |
|
244 print("--StationVehicleList--"); |
|
245 print(" Count(): " + list.Count()); |
|
246 list.Valuate(AIVehicleListLocation()); |
|
247 print(" Location ListDump:"); |
|
248 for (local i = list.Begin(); list.HasNext(); i = list.Next()) { |
|
249 print(" " + i + " => " + list.GetValue(i)); |
|
250 } |
240 } |
251 } |
241 |
252 |
242 function Regression::Road() |
253 function Regression::Road() |
243 { |
254 { |
244 local road = AIRoad(); |
255 local road = AIRoad(); |