MP Lobby: allowed observing a game even if you don't have all prerequisites

You'll be prompted to download the requirements you're missing.
This commit is contained in:
Charles Dang 2018-02-20 15:00:53 +11:00
parent 3dc4d33983
commit a86bd3149f

View file

@ -527,7 +527,7 @@ bool game_info::can_join() const
bool game_info::can_observe() const
{
return (have_era && have_all_mods && observers) || preferences::is_authenticated();
return observers || preferences::is_authenticated();
}
const char* game_info::display_status_string() const