Skip to content

Commit

Permalink
Attempt to fix non-required era being flagged for download
Browse files Browse the repository at this point in the history
See #2747.

(cherry-picked from commit ab54b62)
  • Loading branch information
Vultraz committed Oct 7, 2018
1 parent 2a6d945 commit 3b3887d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/game_initialization/lobby_data.cpp
Expand Up @@ -265,7 +265,9 @@ game_info::game_info(const config& game, const config& game_config, const std::v
era_short = make_short_name(era);
verified = false;

addons_outcome = NEED_DOWNLOAD;
if(!have_era) {
addons_outcome = NEED_DOWNLOAD;
}
}
} else {
era = _("Unknown era");
Expand Down

0 comments on commit 3b3887d

Please sign in to comment.