From 14079619cfa7fe130f42b9ca56e650830db0c879 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 13 May 2024 09:39:48 +0100 Subject: [PATCH] Fixed bundle path issue --- project/Aki.Custom/Utils/BundleManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Aki.Custom/Utils/BundleManager.cs b/project/Aki.Custom/Utils/BundleManager.cs index a868bd3..b49f227 100644 --- a/project/Aki.Custom/Utils/BundleManager.cs +++ b/project/Aki.Custom/Utils/BundleManager.cs @@ -23,7 +23,7 @@ namespace Aki.Custom.Utils public static string GetBundlePath(BundleItem bundle) { return RequestHandler.IsLocal - ? $"{bundle.ModPath}/bundles/{bundle.FileName}" + ? $"{bundle.ModPath}/bundles/" : CachePath; }