From 6bd13c03999605437ca214a5d071baa333cbe061 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Wed, 26 Mar 2025 19:58:32 +0100 Subject: [PATCH] Forbid crossplay between 2024.10.29 and 16.0 Innersloth also forbids it, and it's likely not possible due to the new GameOption version --- src/Impostor.Server/Net/Manager/CompatibilityManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs index 3303436..826d614 100644 --- a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs +++ b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs @@ -21,6 +21,9 @@ internal class CompatibilityManager : ICompatibilityManager new GameVersion(2024, 4, 1), // 2024.8.13 new GameVersion(2024, 4, 2), // 2024.9.4 new GameVersion(2024, 8, 10), // 2024.10.29 + }, + new[] + { new GameVersion(2024, 8, 11), // 16.0.0 (2025-03-25) }, }; -- 2.39.5