From dc3e8a07e6cae60e611ec6a1ea645b74fd910c25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guilloux?= Date: Mon, 31 Mar 2025 00:33:01 +0200 Subject: [PATCH] Fix #13928, 35e58f6: BuildOilRig did not properly set airport rotation (#13929) --- src/station_cmd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index bad22a65d6..ad5e88dd96 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -4519,6 +4519,7 @@ void BuildOilRig(TileIndex tile) st->owner = OWNER_NONE; st->airport.type = AT_OILRIG; + st->airport.rotation = DIR_N; st->airport.Add(tile); st->ship_station.Add(tile); st->facilities = {StationFacility::Airport, StationFacility::Dock};