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

Merge branch '2.3' into 2.4-pr

This commit is contained in:
RaidMax
2019-07-27 17:50:25 -05:00
3 changed files with 28 additions and 15 deletions

View File

@ -289,7 +289,7 @@ namespace SharedLibraryCore
}
}
else if (long.TryParse(str, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out id))
else if (long.TryParse(str.Length > 16 ? str.Substring(0, 16) : str, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out id))
{
}