From baa6518c0ecf3c0822816d40ce629ca67d5c3c07 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com>
Date: Thu, 19 Apr 2018 16:05:26 +0200
Subject: [PATCH] Fixed ClientId cast issue
---
MLAPI/Data/NetId.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/MLAPI/Data/NetId.cs b/MLAPI/Data/NetId.cs
index 4521704..9e8e3ac 100644
--- a/MLAPI/Data/NetId.cs
+++ b/MLAPI/Data/NetId.cs
@@ -81,7 +81,7 @@ namespace MLAPI.Data
/// The client identifier.
public uint GetClientId()
{
- return (uint)HostId | (ushort)((uint)(byte)(ConnectionId & 0xFF) << 8) | (ushort)((uint)(byte)((ConnectionId >> 8) & 0xFF) << 16) | (ushort)((uint)Meta << 24);
+ return HostId | (uint)((ConnectionId & 0xFF) << 8) | (uint)(((ConnectionId >> 8) & 0xFF) << 16) | (uint)(Meta << 24);
}
// Rider generated vvv
///