diff options
author | rubidium <rubidium@openttd.org> | 2007-05-19 21:47:14 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-19 21:47:14 +0000 |
commit | 707bc97c0317a99fd4c6259f073251ae5b6ac49b (patch) | |
tree | 0db3b81a7fd8b2632985d1c5e58fabfe683a2e14 | |
parent | 904619f6317a097ebdfc566d1a8ae51f73023fbe (diff) | |
download | openttd-707bc97c0317a99fd4c6259f073251ae5b6ac49b.tar.xz |
(svn r9882) -Fix (r9874): the "default group" is also a valid group in some cases.
-rw-r--r-- | src/group_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group_cmd.cpp b/src/group_cmd.cpp index b44e92fbe..72032e0c7 100644 --- a/src/group_cmd.cpp +++ b/src/group_cmd.cpp @@ -181,7 +181,7 @@ int32 CmdAddVehicleGroup(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) { GroupID new_g = p1; - if (!IsValidVehicleID(p2) || !IsValidGroupID(new_g)) return CMD_ERROR; + if (!IsValidVehicleID(p2) || (!IsValidGroupID(new_g) && !IsDefaultGroupID(new_g))) return CMD_ERROR; Vehicle *v = GetVehicle(p2); if (v->owner != _current_player || (v->type == VEH_TRAIN && !IsFrontEngine(v))) return CMD_ERROR; |