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

Change some ride type names for clarity, fix Americanism

This commit is contained in:
Michael Steenbeek
2017-12-08 07:59:44 +01:00
parent 3868b100df
commit 171271215e
20 changed files with 96 additions and 96 deletions

View File

@@ -2600,7 +2600,7 @@ bool track_element_is_covered(sint32 trackElementType)
bool track_element_is_booster(uint8 rideType, uint8 trackType)
{
// Boosters share their ID with the Spinning Control track.
if (rideType != RIDE_TYPE_WILD_MOUSE && trackType == TRACK_ELEM_BOOSTER)
if (rideType != RIDE_TYPE_STEEL_WILD_MOUSE && trackType == TRACK_ELEM_BOOSTER)
{
return true;
}