From f38ea388dd912fdfefa0a6cc12ea7f2aa9a91525 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 14 Aug 2007 17:31:15 +0000 Subject: [PATCH] (svn r10892) -Fix [FS#1127]: trains would not get flooded when they are at the lower part of a tile that would become a coast tile after flooding. Patch by frosch. --- src/water_cmd.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/water_cmd.cpp b/src/water_cmd.cpp index f942349af9..4c013857ad 100644 --- a/src/water_cmd.cpp +++ b/src/water_cmd.cpp @@ -567,6 +567,9 @@ static void TileLoopWaterHelper(TileIndex tile, const TileIndexDiffC *offs) )) { break; } + + Vehicle *v = FindFloodableVehicleOnTile(target); + if (v != NULL) FloodVehicle(v); } /* FALLTHROUGH */