Fixed PrimitiveHasher cash regarding uint

This commit is contained in:
Albin Corén 2018-04-23 21:09:11 +02:00
parent 0b1146ea33
commit 52c4b4e0ef

View File

@ -28,7 +28,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary
public static ulong GetUIntHash(string input, bool cache = false)
{
if (cache && uintCachedHashes.ContainsKey(input))
return ulongCachedHashes[input];
return uintCachedHashes[input];
using (SHA256Managed sha = new SHA256Managed())
{