1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 03:05:24 +01:00

Fix #22185: Intensity and nausea are incorrectly sorted in the rides list after ratings invalidation

Co-authored-by: Michael Steenbeek <1478678+Gymnasiast@users.noreply.github.com>
This commit is contained in:
lewyche
2024-07-06 10:27:18 -04:00
committed by GitHub
parent 447bb865a4
commit 78300a80dd
3 changed files with 4 additions and 0 deletions

View File

@@ -241,6 +241,7 @@ Appreciation for contributors who have provided substantial work, but are no lon
* Karsten Van Fossan (karstenvanf)
* Kaavya Ramachandhran (ayvaak)
* Mike Harvey (harvito)
* Robert Yan (lewyche)
## Toolchain
* (Balletie) - macOS

View File

@@ -49,6 +49,7 @@
- Fix: [#22152] [Plugin] Negative signed integers are truncated.
- Fix: [#22161] Using arrow keys in textboxes crashes the game.
- Fix: [#22174] Cheats are reset when starting a server.
- Fix: [#22185] Intensity and nausea are incorrectly sorted in the rides list after ratings invalidation.
- Fix: [#22226] Red traffic light shows incorrect sprite when pressed.
- Fix: [objects#323] Incorrect wall boundaries on large WW/TT scenery objects.
- Fix: [objects#331] Incorrect hover car capacity string.

View File

@@ -2268,4 +2268,6 @@ bool RatingTuple::isNull() const
void RatingTuple::setNull()
{
excitement = kRideRatingUndefined;
intensity = kRideRatingUndefined;
nausea = kRideRatingUndefined;
}