summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2005-08-01 12:55:21 +0000
committerbjarni <bjarni@openttd.org>2005-08-01 12:55:21 +0000
commit265404bb13509785270d09454fba69166bf9ed0b (patch)
treede7020255a20bf0acc5c20e87d12b95227e371a5
parentf0382bfeb958b7787372c0e80bb34f766150b720 (diff)
downloadopenttd-265404bb13509785270d09454fba69166bf9ed0b.tar.xz
(svn r2779) -Fix: [clone vehicles] fixed typos, which could lead to crashes when cloning refitted trains (chrishuebsch)
-rw-r--r--vehicle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle.c b/vehicle.c
index 5b889eb8b..9a6ec8816 100644
--- a/vehicle.c
+++ b/vehicle.c
@@ -1778,7 +1778,7 @@ int32 CmdCloneVehicle(int x, int y, uint32 flags, uint32 p1, uint32 p2)
}
}
- if (flags && DC_EXEC && needs_refitting != 255 && v->type != VEH_Road) { // right now we do not refit road vehicles
+ if (flags & DC_EXEC && needs_refitting != 255 && vfront->type != VEH_Road) { // right now we do not refit road vehicles
if (DoCommandByTile(wfront->tile, wfront->index, needs_refitting, 0, refit_command) != CMD_ERROR)
DoCommandByTile(wfront->tile, wfront->index, needs_refitting, DC_EXEC, refit_command);
}