From a11d375ec620f1e6c0e292d8c09e5ec09c76e70f Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 20 Aug 2025 13:26:35 -0700 Subject: [PATCH] Oops --- Assets/Scripts/BazookaManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/BazookaManager.cs b/Assets/Scripts/BazookaManager.cs index 0ad2e53..14870c4 100644 --- a/Assets/Scripts/BazookaManager.cs +++ b/Assets/Scripts/BazookaManager.cs @@ -68,7 +68,7 @@ public class BazookaManager : MonoBehaviour #if UNITY_EDITOR return; #else - string path = Path.Join(Application.persistentDataPath, SensitiveInfo.BAZOOKA_MANAGER_FILE_KEY + "BazookaManager.dat"); + string path = Path.Join(Application.persistentDataPath, SensitiveInfo.BAZOOKA_MANAGER_FILE_KEY + ".dat"); var encoded = SensitiveInfo.EncryptRaw(saveFile.ToString(Formatting.None), SensitiveInfo.BAZOOKA_MANAGER_KEY); if (encoded == null) return; using var fileStream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.None);