From db9c6ab66c067a25b83f15436b532633532ebc74 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Tue, 18 Aug 2026 20:52:29 +0200 Subject: [PATCH] Add special game version for mobile Thanks Niko --- src/Impostor.Server/Net/Manager/CompatibilityManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs index f8eb23b..3203767 100644 --- a/src/Impostor.Server/Net/Manager/CompatibilityManager.cs +++ b/src/Impostor.Server/Net/Manager/CompatibilityManager.cs @@ -47,7 +47,8 @@ internal class CompatibilityManager : ICompatibilityManager }, new[] { - new GameVersion(2026, 7, 15), // 18.0 (2026-08-18, build 7238) + new GameVersion(2026, 7, 15), // 18.0 (2026-08-18, build 7238, pc only) + new GameVersion(2026, 7, 16), // 18.0 (2026-08-18, build 7238, mobile only) }, }; -- 2.39.5