1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix Air Powered Vertical Coaster top section tunnels (#24824)

This commit is contained in:
mix
2025-07-24 09:17:48 +01:00
committed by GitHub
parent 64309259f0
commit be8636fe4c
2 changed files with 1 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
- Fix: [#24711] The map smoothing function only partially works for custom height map image files.
- Fix: [#24773] The new ride window debug authors does not show the correct authors for non legacy ride objects.
- Fix: [#24775] The scenery and new ride windows do not filter by file name or identifier correctly for non legacy objects.
- Fix: [#24824] The Air Powered Vertical Coaster top section track piece has vertical tunnels (original bug).
0.4.24 (2025-07-05)
------------------------------------------------------------------------

View File

@@ -903,7 +903,6 @@ static void AirPoweredVerticalRCTrackVerticalTop(
PaintAddImageAsParentRotated(
session, direction, imageIdT, { 0, 0, height }, { { 33, 6, height }, { 2, 20, 1 } });
}
PaintUtilSetVerticalTunnel(session, height + 80);
break;
case 2:
imageIdT = session.TrackColours.WithIndex(imageIds[direction][3]);
@@ -917,7 +916,6 @@ static void AirPoweredVerticalRCTrackVerticalTop(
PaintAddImageAsParentRotated(
session, direction, imageIdT, { 0, 0, height }, { { 0, 6, height }, { 2, 20, 15 } });
}
PaintUtilSetVerticalTunnel(session, height + 80);
break;
case 3:
imageIdS = session.SupportColours.WithIndex(imageIds[direction][4]);