actually fix steam id parsing

This commit is contained in:
RaidMax 2021-07-01 10:14:58 -05:00
parent c7e5c9c8dd
commit 7444cb6472

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));