(svn r10810) -Fix (r10097): Add a comma between different cargo types if an articulated vehicle carries more than one cargo.

This commit is contained in:
maedhros 2007-08-06 12:54:03 +00:00
parent 68abeed9b8
commit a43370bf1c
1 changed files with 2 additions and 0 deletions

View File

@ -145,6 +145,8 @@ static void RoadVehDetailsWndProc(Window *w, WindowEvent *e)
if (!first) strecat(capacity, ", ", lastof(capacity));
strecat(capacity, buffer, lastof(capacity));
first = false;
}
}