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:
@@ -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)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user