This commit is contained in:
2024-04-20 19:35:55 -04:00
parent b31d5d30a8
commit 07d1cf363c
+1 -1
View File
@@ -13,7 +13,7 @@ public static class HelperFunctions
updatedPath = Pathing.BaseContentPath.TrimEnd('/') + pathAdditions; updatedPath = Pathing.BaseContentPath.TrimEnd('/') + pathAdditions;
if (!System.IO.File.Exists(updatedPath)) if (!System.IO.File.Exists(updatedPath))
{ {
updatedPath = Application.streamingAssetsPath + "/JP" + pathAdditions; updatedPath = Application.streamingAssetsPath.TrimEnd('/') + "/JP" + pathAdditions;
} }
} }
else else