diff options
author | peter1138 <peter1138@openttd.org> | 2005-11-06 13:29:28 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2005-11-06 13:29:28 +0000 |
commit | 1fecb61566b559cafd048e93cd42cec66bff559a (patch) | |
tree | 64a9d3a79461f5f4ddf22687d5d9c3cc85f8449c | |
parent | b88564b6be0f95d5c8e5cea4ef0134eacdda0c5f (diff) | |
download | openttd-1fecb61566b559cafd048e93cd42cec66bff559a.tar.xz |
(svn r3147) Fix crash when building dual-head rail vehicles...
-rw-r--r-- | train_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/train_cmd.c b/train_cmd.c index 04dee12b2..58100e871 100644 --- a/train_cmd.c +++ b/train_cmd.c @@ -697,7 +697,7 @@ int32 CmdBuildRailVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2) if (rvi->flags&RVI_MULTIHEAD && HASBIT(p2,0)) value /= 2; - num_vehicles = (rvi->flags & RVI_MULTIHEAD && HASBIT(p2, 0)) ? 2 : 1; + num_vehicles = (rvi->flags & RVI_MULTIHEAD && !HASBIT(p2, 0)) ? 2 : 1; num_vehicles += CountArticulatedParts(rvi, p1); if (!(flags & DC_QUERY_COST)) { |