1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix #20018: Shops not calculating up-keep cost

This commit is contained in:
ζeh Matt
2023-04-22 22:56:59 +03:00
parent 9ca4e48c79
commit 4dbe3fa5d7

View File

@@ -188,12 +188,6 @@ static bool RideRatingIsUpdatingRide(RideId id)
static bool ShouldSkipRatingCalculation(const Ride& ride)
{
// Skip anything that isn't a real ride.
if (ride.GetClassification() != RideClassification::Ride)
{
return true;
}
// Skip rides that are closed.
if (ride.status == RideStatus::Closed)
{