1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix missing tunnel at end of go-karts medium right gentle sloped turn (#25342)

This commit is contained in:
mix
2025-10-14 14:46:23 +01:00
committed by GitHub
parent 0f576ca5f9
commit 2b4cc24e92
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
- Fix: [#22779, #25330] Incorrect queue paths in Nevermore Park and Six Flags Holland scenarios (bug in the original scenarios).
- Fix: [#25299] The Mine Train Coaster left large helix draws incorrect sprites at certain angles (original bug).
- Fix: [#25328] Spiral Slide in Blackpool Pleasure Beach has its entrance and exit the wrong way round (bug in the original scenario).
- Fix: [#25342] The Go-Karts medium right gentle sloped turn does not have a tunnel at the end.
0.4.27 (2025-10-04)
------------------------------------------------------------------------

View File

@@ -2474,7 +2474,7 @@ static void TrackRightQuarterTurn5TilesUp25(
{
PaintUtilPushTunnelRotated(session, direction, height - 8, kTunnelGroup, TunnelSubType::SlopeStart);
}
else if (trackSequence == 6 && (direction == 2 || direction == 3))
else if (trackSequence == 6 && (direction == 0 || direction == 1))
{
PaintUtilPushTunnelRotated(session, DirectionNext(direction), height + 8, kTunnelGroup, TunnelSubType::SlopeEnd);
}