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

fix pathing to not use uri

This commit is contained in:
CWX 2024-06-05 09:11:34 +01:00
parent 599b5ec520
commit 09d125802a

View File

@ -14,7 +14,7 @@ namespace SPT.Custom.Patches
/// ///
public class FileCachePatch : ModulePatch public class FileCachePatch : ModulePatch
{ {
private static readonly string _sptPath = new Uri(Path.Combine(Environment.CurrentDirectory, "user", "sptappdata")).AbsolutePath; private static readonly string _sptPath = Path.Combine(Environment.CurrentDirectory, "user", "sptappdata");
protected override MethodBase GetTargetMethod() protected override MethodBase GetTargetMethod()
{ {