Fix savefile issue

This commit is contained in:
2026-02-11 17:57:32 -07:00
parent d855773d61
commit 445895cc29

View File

@@ -29,10 +29,7 @@ public class BazookaManager : MonoBehaviour
{
var oldSave = Path.Join(Application.persistentDataPath, OldSavefileEncryption.BAZOOKA_MANAGER_FILE_KEY + ".dat");
var newSave = Path.Join(Application.persistentDataPath, "savefile.json");
if (
File.Exists(oldSave) ||
!File.Exists(newSave)
)
if (File.Exists(oldSave) && !File.Exists(newSave))
{
File.WriteAllBytes(newSave, Encoding.UTF8.GetBytes(OldSavefileEncryption.DecryptRaw(File.ReadAllBytes(oldSave))));
File.Delete(oldSave);