From 275d9ed3bb136efd7b53cd3af9e00bdb695c7446 Mon Sep 17 00:00:00 2001 From: legoandmars Date: Sun, 18 Feb 2024 19:20:25 -0800 Subject: [PATCH] Temporarily remove vanilla lobby join disable --- LobbyCompatibility/Features/PluginHelper.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/LobbyCompatibility/Features/PluginHelper.cs b/LobbyCompatibility/Features/PluginHelper.cs index ebbe0cc..6294f63 100644 --- a/LobbyCompatibility/Features/PluginHelper.cs +++ b/LobbyCompatibility/Features/PluginHelper.cs @@ -204,9 +204,13 @@ internal static bool MatchesTargetRequirements(IEnumerable tar /// This means the client is allowed to have unknown or clientside mods. 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; } ///