From 461ca703ff51900a07ff5d6afb34b3ded8fc76fc Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 1 Jan 2005 15:40:44 +0000 Subject: (svn r1318) -Fix: Saving a game fucked up the industries.. sorry ;) --- industry_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index 2e57b59fc..236a34744 100644 --- 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++; } } -- cgit v1.2.3-54-g00ecf