mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-25 23:49:09 +00:00
(svn r23139) -Change: [NewGRF v8] Do no longer apply base cost fallbacks.
This commit is contained in:
@@ -8682,9 +8682,10 @@ static void FinalisePriceBaseMultipliers()
|
||||
}
|
||||
}
|
||||
|
||||
/* Apply fallback prices */
|
||||
/* Apply fallback prices for grf version < 8 */
|
||||
const GRFFile * const *end = _grf_files.End();
|
||||
for (GRFFile **file = _grf_files.Begin(); file != end; file++) {
|
||||
if ((*file)->grf_version >= 8) continue;
|
||||
PriceMultipliers &price_base_multipliers = (*file)->price_base_multipliers;
|
||||
for (Price p = PR_BEGIN; p < PR_END; p++) {
|
||||
Price fallback_price = _price_base_specs[p].fallback_price;
|
||||
|
Reference in New Issue
Block a user