mirror of https://github.com/OpenTTD/OpenTTD
Fix: Ignore clicks on non-applicable global goals (#8035)
parent
b542ebfb52
commit
fd64c62bcd
|
@ -86,7 +86,7 @@ struct GoalListWindow : public Window {
|
|||
if (y < 0) return;
|
||||
|
||||
for (const Goal *s : Goal::Iterate()) {
|
||||
if (s->company == this->window_number) {
|
||||
if (s->company == this->window_number && s->company != INVALID_COMPANY) {
|
||||
y--;
|
||||
if (y == 0) {
|
||||
this->HandleClick(s);
|
||||
|
|
Loading…
Reference in New Issue