diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 52d2fde808..15500522a3 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -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. diff --git a/src/openrct2/entity/Peep.cpp b/src/openrct2/entity/Peep.cpp index 5ad91435ba..554368d852 100644 --- a/src/openrct2/entity/Peep.cpp +++ b/src/openrct2/entity/Peep.cpp @@ -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,