Changeset - r26142:d7c6ebb6bcfb
[Not reviewed]
master
0 1 0
Jonathan G Rennison - 2 years ago 2021-12-30 14:06:40
j.g.rennison@gmail.com
Fix #9774: CmdBuildRoadStop updated station acceptance in estimate mode
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -1918,10 +1918,10 @@ CommandCost CmdBuildRoadStop(DoCommandFl
 

	
 
			MarkTileDirtyByTile(cur_tile);
 
		}
 
	}
 

	
 
	if (st != nullptr) {
 
		st->AfterStationTileSetChange(true, is_truck_stop ? STATION_TRUCK: STATION_BUS);
 

	
 
		if (st != nullptr) {
 
			st->AfterStationTileSetChange(true, is_truck_stop ? STATION_TRUCK: STATION_BUS);
 
		}
 
	}
 
	return cost;
 
}
0 comments (0 inline, 0 general)