RoleOptions.Serialize(writer);
}
- if (version > 5)
+ // V6 is equal to V5
+ if (version > 6)
{
throw new ImpostorException($"Unknown GameOptionsData version {Version}.");
}
RoleOptions = RoleOptionsData.Deserialize(bytes);
}
- if (Version > 5)
+ // V6 is equal to V5
+ if (Version > 6)
{
throw new ImpostorException($"Unknown GameOptionsData version {Version}.");
}
GameVersion.GetVersion(2021, 11, 9), // 2021.11.9
GameVersion.GetVersion(2021, 12, 14), // 2021.12.14
GameVersion.GetVersion(2022, 1, 10), // 2021.2.23
+ GameVersion.GetVersion(2022, 2, 2), // 2022.3.29
};
private readonly ILogger<ClientManager> _logger;