From 707bc97c0317a99fd4c6259f073251ae5b6ac49b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 19 May 2007 21:47:14 +0000 Subject: (svn r9882) -Fix (r9874): the "default group" is also a valid group in some cases. --- src/group_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/group_cmd.cpp') 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; -- cgit v1.2.3-54-g00ecf