Changeset - r17177:c73722689dc0
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2011-01-29 23:42:40
frosch@openttd.org
(svn r21926) -Fix [FS#4450](r21924): v != w.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/vehicle_cmd.cpp
Show inline comments
 
@@ -786,8 +786,8 @@ CommandCost CmdCloneVehicle(TileIndex ti
 
				}
 
			}
 

	
 
			if (w->IsGroundVehicle() && w->HasArticulatedPart()) {
 
				w = w->GetNextArticulatedPart();
 
			if (v->IsGroundVehicle() && v->HasArticulatedPart()) {
 
				v = v->GetNextArticulatedPart();
 
			} else {
 
				break;
 
			}
0 comments (0 inline, 0 general)