summaryrefslogtreecommitdiff
path: root/src/station_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/station_map.h')
-rw-r--r--src/station_map.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/station_map.h b/src/station_map.h
index ef4e243e1..4fc85d94b 100644
--- a/src/station_map.h
+++ b/src/station_map.h
@@ -640,10 +640,12 @@ static inline void MakeDriveThroughRoadStop(TileIndex t, Owner station, Owner ro
* @param o the owner of the airport
* @param sid the station to which this tile belongs
* @param section the StationGfx to be used for this tile
+ * @param wc the type of water on this tile
*/
-static inline void MakeAirport(TileIndex t, Owner o, StationID sid, byte section)
+static inline void MakeAirport(TileIndex t, Owner o, StationID sid, byte section, WaterClass wc)
{
MakeStation(t, o, sid, STATION_AIRPORT, section);
+ SetWaterClass(t, wc);
}
/**