Skip to content

Commit

Permalink
Temporarily remove vanilla lobby join disable
Browse files Browse the repository at this point in the history
  • Loading branch information
legoandmars committed Feb 19, 2024
1 parent 618d6d4 commit 275d9ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions LobbyCompatibility/Features/PluginHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,13 @@ internal static bool MatchesTargetRequirements(IEnumerable<PluginInfoRecord> tar
/// <remarks> This means the client is allowed to have unknown or clientside mods. </remarks>
internal static bool CanJoinVanillaLobbies()
{
return GetAllPluginInfo().All(plugin =>
// Disabled until we have enough people using the mod to make this realistic to do
// If this was enabled immediately in first release, you would be unable to play with anyone who's missing LC, which will be nearly everyone
/* return GetAllPluginInfo().All(plugin =>
plugin.CompatibilityLevel != CompatibilityLevel.Everyone &&
plugin.CompatibilityLevel != CompatibilityLevel.ClientOptional);
plugin.CompatibilityLevel != CompatibilityLevel.ClientOptional); */

return true;
}

/// <summary>
Expand Down

0 comments on commit 275d9ed

Please sign in to comment.