1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

fix GUID parsing on T6

This commit is contained in:
RaidMax
2019-06-15 08:52:59 -05:00
parent 4b8ebc8272
commit 3dd01793fa

View File

@ -282,7 +282,10 @@ namespace SharedLibraryCore
// this is a special case for Plutonium T6 and CoD4x
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))
@ -296,7 +299,7 @@ namespace SharedLibraryCore
if (id == 0)
{
throw new FormatException($"Could not parse client GUID - {str}");
throw new FormatException($"Could not parse client GUID - {str}");
}
return id;