Do not scale shown running costs by the day length factor

Show in original years
This commit is contained in:
Jonathan G Rennison
2024-02-16 18:41:53 +00:00
parent 3ec77973df
commit b940fa9466
5 changed files with 23 additions and 3 deletions

View File

@@ -693,7 +693,7 @@ public:
* Gets the running cost of a vehicle that can be sent into SetDParam for string processing.
* @return the vehicle's running cost
*/
Money GetDisplayRunningCost() const { return (this->GetRunningCost() >> 8) * DayLengthFactor(); }
Money GetDisplayRunningCost() const { return this->GetRunningCost() >> 8; }
/**
* Gets the profit vehicle had this year. It can be sent into SetDParam for string processing.