fix GUID parsing on T6

This commit is contained in:
RaidMax 2019-06-15 08:52:59 -05:00
parent c6c2ec7784
commit cbfb3919fc

View File

@ -282,7 +282,10 @@ namespace SharedLibraryCore
// this is a special case for Plutonium T6 and CoD4x // this is a special case for Plutonium T6 and CoD4x
if (long.TryParse(str, NumberStyles.Integer, CultureInfo.InvariantCulture, out long id)) if (long.TryParse(str, NumberStyles.Integer, CultureInfo.InvariantCulture, out long id))
{ {
if (id < 0)
{
id = (uint)id;
}
} }
else if (long.TryParse(str, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out id)) else if (long.TryParse(str, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out id))
@ -296,7 +299,7 @@ namespace SharedLibraryCore
if (id == 0) if (id == 0)
{ {
throw new FormatException($"Could not parse client GUID - {str}"); throw new FormatException($"Could not parse client GUID - {str}");
} }
return id; return id;