From 07d1cf363ce5efa778f847b21069d8d06190bdf9 Mon Sep 17 00:00:00 2001 From: Arneth Date: Sat, 20 Apr 2024 19:35:55 -0400 Subject: [PATCH] fix path --- Assets/Scripts/HelperFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/HelperFunctions.cs b/Assets/Scripts/HelperFunctions.cs index e9d0750ee..872bf3808 100644 --- a/Assets/Scripts/HelperFunctions.cs +++ b/Assets/Scripts/HelperFunctions.cs @@ -13,7 +13,7 @@ public static class HelperFunctions updatedPath = Pathing.BaseContentPath.TrimEnd('/') + pathAdditions; if (!System.IO.File.Exists(updatedPath)) { - updatedPath = Application.streamingAssetsPath + "/JP" + pathAdditions; + updatedPath = Application.streamingAssetsPath.TrimEnd('/') + "/JP" + pathAdditions; } } else