# HG changeset patch # User truelight # Date 2005-01-01 15:40:44 # Node ID 7330f79937abe220ed02b8aaef22211b123af7d6 # Parent f04d7c5f41ca64879745fe02fd255a56049cb509 (svn r1318) -Fix: Saving a game fucked up the industries.. sorry ;) diff --git a/industry_cmd.c b/industry_cmd.c --- a/industry_cmd.c +++ b/industry_cmd.c @@ -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++; } }