{
platformSpecificData = null;
}
+
+ if (clientVersion >= Version.V4)
+ {
+ reader.ReadByte(); // purpose unknown, seems hardcoded to 0
+ }
}
private static class Version
public static readonly int V2 = GameVersion.GetVersion(2021, 6, 30);
public static readonly int V3 = GameVersion.GetVersion(2021, 11, 9);
+
+ public static readonly int V4 = GameVersion.GetVersion(2021, 12, 14);
}
}
}
private static readonly int[] SupportedVersions =
{
GameVersion.GetVersion(2021, 11, 9), // 2021.11.9
+ GameVersion.GetVersion(2021, 12, 14), // 2021.12.14
};
private readonly ILogger<ClientManager> _logger;