From b30775c2fcf0d35bddf8e613a766a32254bf17ee Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Mon, 20 Apr 2026 22:00:32 +0200 Subject: [PATCH] Add compat version for 17.3 (#724) * Add compat version for 17.3 * Add compat version for 17.3.1 --- src/Impostor.Server/Net/Manager/CompatibilityManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs index e67ca2b..ba9a95f 100644 --- a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs +++ b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs @@ -40,6 +40,8 @@ internal class CompatibilityManager : ICompatibilityManager new GameVersion(2025, 11, 5), // 17.2 (2026-02-17, build 6630, not a typo, Innersloth went backwards) new GameVersion(2026, 1, 22), // 17.2 (2026-02-19, build 6686, hotfix) new GameVersion(2026, 2, 2), // 17.2.2 (2026-03-17, build 6768) + new GameVersion(2026, 1, 12), // 17.3 (2026-03-31, build 6803) + new GameVersion(2026, 3, 17), // 17.3.1 (2026-04-08, build 6841, mobile only) }, }; -- 2.39.5