diff options
author | Peter Nelson <peter1138@openttd.org> | 2019-02-15 20:14:50 +0000 |
---|---|---|
committer | Niels Martin Hansen <nielsm@indvikleren.dk> | 2019-03-03 09:15:39 +0100 |
commit | 5a5944867dfeaa556ec78c23af4796adb28a6a9f (patch) | |
tree | f735f1c944bbf765bbcdfe9311cc7ed86ed71135 /bin/ai/regression/tst_regression | |
parent | 5d3ccae6c5bd3f328ad0d8e68ae7c69451b9ca48 (diff) | |
download | openttd-5a5944867dfeaa556ec78c23af4796adb28a6a9f.tar.xz |
Add: Add parent_group_id parameter to CreateGroup()
Diffstat (limited to 'bin/ai/regression/tst_regression')
-rw-r--r-- | bin/ai/regression/tst_regression/main.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ai/regression/tst_regression/main.nut b/bin/ai/regression/tst_regression/main.nut index 8b92b6f88..7315f33f8 100644 --- a/bin/ai/regression/tst_regression/main.nut +++ b/bin/ai/regression/tst_regression/main.nut @@ -574,7 +574,7 @@ function Regression::Group() local vehicle = AIVehicle.BuildVehicle(10000, 116); print(" AIVehicle.BuildVehicle(): " + vehicle); print(" GetNumEngines(): " + AIGroup.GetNumEngines(AIGroup.GROUP_ALL, 116)); - local group = AIGroup.CreateGroup(AIVehicle.VT_ROAD); + local group = AIGroup.CreateGroup(AIVehicle.VT_ROAD, AIGroup.GROUP_INVALID); print(" CreateGroup(): " + group); print(" MoveVehicle(): " + AIGroup.MoveVehicle(group, vehicle)); print(" GetNumEngines(): " + AIGroup.GetNumEngines(group, 116)); |