We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4857d commit 222604dCopy full SHA for 222604d
Assets/PatchKit Patcher/Scripts/AppData/Local/UnityCache.cs
@@ -27,7 +27,11 @@ private string FormatKey(string key)
27
28
public void SetValue(string key, string value)
29
{
30
- UnityDispatcher.Invoke(() => PlayerPrefs.SetString(FormatKey(key), value)).WaitOne();
+ UnityDispatcher.Invoke(() =>
31
+ {
32
+ PlayerPrefs.SetString(FormatKey(key), value);
33
+ PlayerPrefs.Save();
34
+ }).WaitOne();
35
}
36
37
public string GetValue(string key, string defaultValue = null)
0 commit comments