mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-04 18:28:03 +01:00
(svn r18401) -Fix: drive through road stops did not get flooded
This commit is contained in:
parent
710e84f11e
commit
c22f9679b5
@ -3173,6 +3173,9 @@ static void ChangeTileOwner_Station(TileIndex tile, Owner old_owner, Owner new_o
|
|||||||
*/
|
*/
|
||||||
static bool CanRemoveRoadWithStop(TileIndex tile, DoCommandFlag flags)
|
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 road_owner = _current_company;
|
||||||
Owner tram_owner = _current_company;
|
Owner tram_owner = _current_company;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user