mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
parent
59251d3c6b
commit
d6aa526b69
@ -229,7 +229,7 @@ public:
|
||||
case WID_TA_ACTION_INFO:
|
||||
if (this->sel_index != -1) {
|
||||
Money action_cost = _price[PR_TOWN_ACTION] * _town_action_costs[this->sel_index] >> 8;
|
||||
bool affordable = action_cost < Company::GetIfValid(_local_company)->money;
|
||||
bool affordable = Company::IsValidID(_local_company) && action_cost < Company::Get(_local_company)->money;
|
||||
|
||||
SetDParam(0, action_cost);
|
||||
DrawStringMultiLine(r.Shrink(WidgetDimensions::scaled.framerect),
|
||||
|
Loading…
Reference in New Issue
Block a user