1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Actually make Spinning control track behave as such for Steel Wild Mouse

This commit is contained in:
Gymnasiast
2020-12-19 21:07:41 +01:00
committed by Richard Qian
parent bcf0e15c97
commit d11862046c
2 changed files with 4 additions and 2 deletions

View File

@@ -1198,7 +1198,8 @@ bool track_element_is_covered(track_type_t trackElementType)
bool TrackTypeIsBooster(uint8_t rideType, track_type_t trackType)
{
// Boosters share their ID with the Spinning Control track.
return rideType != RIDE_TYPE_SPINNING_WILD_MOUSE && trackType == TrackElemType::Booster;
return rideType != RIDE_TYPE_SPINNING_WILD_MOUSE && rideType != RIDE_TYPE_STEEL_WILD_MOUSE
&& trackType == TrackElemType::Booster;
}
bool TrackTypeHasSpeedSetting(track_type_t trackType)