changeset 13872:34c1f1b5cada draft

(svn r18401) -Fix: drive through road stops did not get flooded
author rubidium <rubidium@openttd.org>
date Fri, 04 Dec 2009 19:16:52 +0000
parents fc42bbbbbe53
children 85b3d1a4faff
files src/station_cmd.cpp
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -3173,6 +3173,9 @@
  */
 static bool CanRemoveRoadWithStop(TileIndex tile, DoCommandFlag flags)
 {
+	/* Yeah... water can always remove stops, right? */
+	if (_current_company == OWNER_WATER) return true;
+
 	Owner road_owner = _current_company;
 	Owner tram_owner = _current_company;