1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 15:24:30 +01:00

Merge pull request #950 from kevinburke/fix-reliability

return the unreliability factor (not 0)
This commit is contained in:
Ted John
2015-03-22 20:16:07 +00:00

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;
}