We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7df73b commit 218a647Copy full SHA for 218a647
com.unity.netcode.gameobjects/Runtime/Messaging/Messages/ConnectionRequestMessage.cs
@@ -8,12 +8,12 @@ namespace Unity.Netcode
8
internal struct ClientConfig : INetworkSerializable
9
{
10
public SessionConfig SessionConfig;
11
- public uint SessionVersion => SessionConfig.SessionVersion;
+ public int SessionVersion => (int)SessionConfig.SessionVersion;
12
public uint TickRate;
13
public bool EnableSceneManagement;
14
15
// Only gets deserialized but should never be used unless testing
16
- public uint RemoteClientSessionVersion;
+ public int RemoteClientSessionVersion;
17
18
public void NetworkSerialize<T>(BufferSerializer<T> serializer) where T : IReaderWriter
19
0 commit comments