From b6e47cbbb86caa5c801a549ddf3b85f659ad94b0 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sun, 25 Jan 2026 17:11:25 -0700 Subject: [PATCH] Make this const as well --- Assets/Scripts/OldSavefileEncryption.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/OldSavefileEncryption.cs b/Assets/Scripts/OldSavefileEncryption.cs index 3d872b8..d2c6b28 100644 --- a/Assets/Scripts/OldSavefileEncryption.cs +++ b/Assets/Scripts/OldSavefileEncryption.cs @@ -6,8 +6,8 @@ using UnityEngine; public class OldSavefileEncryption { - public static readonly string BAZOOKA_MANAGER_KEY = "5de0d5798d4eb751e13b668c1fc5297d"; - public static readonly string BAZOOKA_MANAGER_FILE_KEY = "e74af7ba21b8b4edd0e3f1d572d63c67"; + public const string BAZOOKA_MANAGER_KEY = "5de0d5798d4eb751e13b668c1fc5297d"; + public const string BAZOOKA_MANAGER_FILE_KEY = "e74af7ba21b8b4edd0e3f1d572d63c67"; public static byte[] EncryptRaw(string text, string key) {