game: fix ignoring flags in recommendation+custom mode

This commit is contained in:
Crypto City 2023-09-15 14:18:27 +00:00
parent 4d13e5fbe9
commit 01ba2e1d14

View File

@ -2047,7 +2047,7 @@ bool GameState::ignore_flag(uint32_t id) const
f = map.get_flag(id);
if (!f)
return false;
return false;
return f->ignore;
}
return false;
}