mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-22 23:33:04 +01:00
Actually make Spinning control track behave as such for Steel Wild Mouse
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -8108,7 +8108,8 @@ bool Vehicle::UpdateTrackMotionForwardsGetNewTrack(uint16_t trackType, Ride* cur
|
||||
if (curRide != nullptr)
|
||||
{
|
||||
uint16_t rideType = curRide->type;
|
||||
if (trackType == TrackElemType::RotationControlToggle && rideType == RIDE_TYPE_SPINNING_WILD_MOUSE)
|
||||
if (trackType == TrackElemType::RotationControlToggle
|
||||
&& (rideType == RIDE_TYPE_SPINNING_WILD_MOUSE || rideType == RIDE_TYPE_STEEL_WILD_MOUSE))
|
||||
{
|
||||
update_flags ^= VEHICLE_UPDATE_FLAG_ROTATION_OFF_WILD_MOUSE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user