Skip to content

Commit

Permalink
Remove debug settings
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanyeti committed Dec 9, 2021
1 parent 0e4fdc1 commit 0d70971
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
1 change: 0 additions & 1 deletion BetterFriendship/BetterFriendship/ModConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ internal class ModConfig : INotifyPropertyChanged
public int GiftCycleDelay { get; set; } = 2000;
public bool IgnoreMaxedFriendships { get; set; } = false;
public bool DisplayBubbles { get; set; } = true;
public bool Debug { get; set; } = false;

private string _giftPreference = "like";
private int _giftCycleCount = 5;
Expand Down
9 changes: 0 additions & 9 deletions BetterFriendship/BetterFriendship/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,15 +214,6 @@ private void SetupConfigMenu(IGenericModConfigMenuApi configMenu)
getValue: () => Config.DisplayBubbles,
setValue: value => Config.DisplayBubbles = value
);

configMenu.AddBoolOption(
ModManifest,
name: () => "[!] Debug",
tooltip: () =>
"Debug",
getValue: () => Config.Debug,
setValue: value => Config.Debug = value
);
}
}
}
3 changes: 1 addition & 2 deletions BetterFriendship/BetterFriendship/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
"GiftCycleDelay": 150000,
"IgnoreMaxedFriendships": false,
"OnlyHighestQuality": false,
"DisplayBubbles": true,
"Debug" : false
"DisplayBubbles": true
}

0 comments on commit 0d70971

Please sign in to comment.