From 2ccc060b4a263f211a43e656cdc75f10e0794ee0 Mon Sep 17 00:00:00 2001 From: belugas <belugas@openttd.org> Date: Sun, 13 May 2007 00:11:13 +0000 Subject: [PATCH] (svn r9830) -Fix(r9779) : Let the town expand and build new houses along the roads of the users, even in case of "No Road" layout (skiddl13) --- src/town_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index db9536c1ce..4f1e29b8d9 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -1178,7 +1178,7 @@ static bool GrowTown(Town *t) /* Let the town be a ghost town * The player wanted it in such a way. Thus there he has it. ;) * Never reached in editor mode. */ - if (_patches.town_layout == TL_NO_ROADS) { + if (_patches.town_layout == TL_NO_ROADS && _generating_world) { return false; }