1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

return the unreliability factor (not 0)

This commit is contained in:
Kevin Burke
2015-03-22 13:00:37 -07:00
parent f51e28fc30
commit 3419d7bdc6

View File

@@ -1327,7 +1327,7 @@ static int get_age_penalty(rct_ride *ride) {
case 5:
case 6:
case 7:
return 0;
return ride->unreliability_factor;
default:
return ride->unreliability_factor * 2;
}