(svn r1318) -Fix: Saving a game fucked up the industries.. sorry ;)

This commit is contained in:
truelight 2005-01-01 15:40:44 +00:00
parent 36333076d5
commit 461ca703ff
1 changed files with 1 additions and 1 deletions

View File

@ -1890,11 +1890,11 @@ static void Save_INDY()
int i = 0;
// Write the vehicles
FOR_ALL_INDUSTRIES(ind) {
i++;
if (ind->xy != 0) {
SlSetArrayIndex(i);
SlObject(ind, _industry_desc);
}
i++;
}
}