update heh
move to proper persistent
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System.IO;
|
||||
using System.Windows.Controls;
|
||||
using heh.Utils;
|
||||
using Torch;
|
||||
using Torch.API;
|
||||
using Torch.API.Managers;
|
||||
@@ -11,12 +12,12 @@ namespace LightPerms.Discord;
|
||||
|
||||
public class Plugin : TorchPluginBase, IWpfPlugin
|
||||
{
|
||||
private Persistent<Config> _config = null!;
|
||||
private ProperPersistent<Config> _config = null!;
|
||||
|
||||
public override void Init(ITorchBase torch)
|
||||
{
|
||||
base.Init(torch);
|
||||
_config = Persistent<Config>.Load(Path.Combine(StoragePath, "LightPerms.Discord.cfg"));
|
||||
_config = new(Path.Combine(StoragePath, "LightPerms.Discord.cfg"));
|
||||
|
||||
Torch.Managers.GetManager<ITorchSessionManager>().AddFactory(s => new DiscordManager(s.Torch, _config.Data));
|
||||
}
|
||||
|
Reference in New Issue
Block a user