Merge remote-tracking branch 'upstream/master'
This commit is contained in:
+2
-2
@@ -257,7 +257,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),
|
||||
@@ -325,7 +325,7 @@ public:
|
||||
}
|
||||
|
||||
/* When double-clicking, continue */
|
||||
if (click_count == 1 || y < 0) break;
|
||||
if (click_count == 1 || y < 0 || !HasBit(this->available_actions, y)) break;
|
||||
FALLTHROUGH;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user