1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

actually fix steam id parsing

This commit is contained in:
RaidMax
2021-07-01 10:14:58 -05:00
parent 305c3ebb93
commit 9645db4760

View File

@ -329,7 +329,7 @@ namespace SharedLibraryCore
var y = int.Parse(match.Groups[2].ToString());
var z = long.Parse(match.Groups[3].ToString());
str = (z * 2 + 0x0110000100000000 + y).ToString();
return z * 2 + 0x0110000100000000 + y;
}
str = str.Substring(0, Math.Min(str.Length, 19));