From 6857e205a19c173c1332e0169e17b844c97f98f6 Mon Sep 17 00:00:00 2001 From: ArchLeaders Date: Wed, 26 Jun 2024 10:56:12 -0700 Subject: [PATCH] Fix totk dict ids --- src/Helpers/ZStdHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Helpers/ZStdHelper.cs b/src/Helpers/ZStdHelper.cs index 336fef1..dabed2c 100644 --- a/src/Helpers/ZStdHelper.cs +++ b/src/Helpers/ZStdHelper.cs @@ -11,8 +11,8 @@ public static int GetDictioanryId(this string path, bool useDictionaries) { false => -1, true => path.EndsWith(".rsizetable") || path.EndsWith("ZsDic.pack") ? -1 : - path.EndsWith(".bcett.byml") ? 3 : - path.EndsWith(".pack") ? 2 : 1 + path.EndsWith(".bcett.byml") ? 2 : + path.EndsWith(".pack") ? 3 : 1 }; }