0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 02:30:44 -05:00

Fixed bundle path issue

This commit is contained in:
Dev 2024-05-13 09:39:48 +01:00
parent 336ad97bc8
commit 14079619cf

View File

@ -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;
}