mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-04 13:42:55 +01:00
Skip drawing accessories whilst peep is clapping
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
- Change: [#25161] Revert to the ‘fair ride price’ calculation of vanilla RCT2.
|
||||
- Fix: [#24513] Ride/track designs can now be shifted underground as well.
|
||||
- Fix: [#24682] The scenery window isn't enough to accommodate all tool buttons when there are multiple rows of groups/tabs.
|
||||
- Fix: [#24882] Guests are shown with hats and umbrellas whilst clapping.
|
||||
- Fix: [#25131] The Reverse Freefall Coaster On-ride photo section track has incorrectly coloured ties.
|
||||
- Fix: [#25132] Crash when trying to use simulate on incomplete ride.
|
||||
- Fix: [#25134] Vehicles visually glitch on diagonal steep slopes.
|
||||
|
||||
@@ -2773,8 +2773,8 @@ void Peep::Paint(PaintSession& session, int32_t imageDirection) const
|
||||
if (guest == nullptr)
|
||||
return;
|
||||
|
||||
// Can't display any accessories whilst drowning
|
||||
if (Action == PeepActionType::Drowning)
|
||||
// Can't display any accessories whilst drowning or clapping
|
||||
if (Action == PeepActionType::Drowning || Action == PeepActionType::Clap)
|
||||
return;
|
||||
|
||||
// There are only 6 walking frames available for each item,
|
||||
|
||||
Reference in New Issue
Block a user