Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
fix to avoid preferences mixup with old version
Browse files Browse the repository at this point in the history
Added a version to the preferences category identifier to avoid mixing the preferences up
  • Loading branch information
xavion-lux committed May 1, 2022
1 parent e8b5d99 commit 1930319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AdBlocker/AdBlockerSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace AdBlocker;

internal static class Settings
{
private static readonly MelonPreferences_Category Prefs = MelonPreferences.CreateCategory(BuildInfo.Name, $"{BuildInfo.Name} Settings");
private static readonly MelonPreferences_Category Prefs = MelonPreferences.CreateCategory(BuildInfo.Name+"v1.0.4+", $"{BuildInfo.Name} Settings");
public static MelonPreferences_Entry<bool> RemoveCarousel;
public static MelonPreferences_Entry<bool> RemoveVrcPlusBanner;
public static MelonPreferences_Entry<bool> RemoveVrcPlusSupporter;
Expand Down

0 comments on commit 1930319

Please sign in to comment.