diff --git a/CelesteTAS-EverestInterop/Utils/HashHelper.cs b/CelesteTAS-EverestInterop/Utils/HashHelper.cs index fcf6d678..bdb45120 100644 --- a/CelesteTAS-EverestInterop/Utils/HashHelper.cs +++ b/CelesteTAS-EverestInterop/Utils/HashHelper.cs @@ -5,6 +5,6 @@ namespace TAS.Utils; internal static class HashHelper { public static string ComputeHash(string text) { - return Everest.ChecksumHasher.ComputeHash(Encoding.UTF8.GetBytes(text)).ToHexadecimalString(); + return XXHash64.Create().ComputeHash(Encoding.UTF8.GetBytes(text)).ToHexadecimalString(); } -} \ No newline at end of file +}