mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-04 13:42:55 +01:00
* Fix #13427. Show # of people for newly created Go-Karts * Add changelog entry * Reorder changelog entry
This commit is contained in:
@@ -839,7 +839,9 @@ void Ride::FormatStatusTo(Formatter& ft) const
|
||||
{
|
||||
ft.Add<rct_string_id>(STR_TEST_RUN);
|
||||
}
|
||||
else if (mode == RideMode::Race && !(lifecycle_flags & RIDE_LIFECYCLE_PASS_STATION_NO_STOPPING))
|
||||
else if (
|
||||
mode == RideMode::Race && !(lifecycle_flags & RIDE_LIFECYCLE_PASS_STATION_NO_STOPPING)
|
||||
&& race_winner != SPRITE_INDEX_NULL)
|
||||
{
|
||||
auto peep = GetEntity<Peep>(race_winner);
|
||||
if (peep != nullptr)
|
||||
|
||||
Reference in New Issue
Block a user