mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Fix flying RC track availability
This commit is contained in:
parent
f2f47aa492
commit
ef77f9c2c1
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ bool RideTypeDescriptor::HasFlag(uint64_t flag) const
|
|||
|
||||
void RideTypeDescriptor::GetAvailableTrackPieces(RideTrackGroup& res) const
|
||||
{
|
||||
res |= EnabledTrackPieces;
|
||||
res = EnabledTrackPieces;
|
||||
if (gCheatsEnableAllDrawableTrackPieces)
|
||||
res |= ExtraTrackPieces;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue