diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 20:27:14 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 20:27:14 -0700 |
| commit | effd23c9e254792d636ac43b17cb712a3fd49b1b (patch) | |
| tree | d76e5000546e141c3c0c4a06046443236a94631c | |
| parent | d5be3a7bc1c4176a9348f81f9677f14ed0b49676 (diff) | |
unregister addons on plugin dispose
| -rw-r--r-- | Malmstone/Plugin.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Malmstone/Plugin.cs b/Malmstone/Plugin.cs index b2cfde7..3a4c679 100644 --- a/Malmstone/Plugin.cs +++ b/Malmstone/Plugin.cs @@ -76,6 +76,15 @@ public sealed class Plugin : IDalamudPlugin ConfigWindow.Dispose(); MainWindow.Dispose(); + if (Configuration.ShowProgressionChatPostCC) + PvPAddon.DisableCrystallineConflictPostMatch(); + if (Configuration.ShowProgressionChatPostRW) + PvPAddon.DisableRivalWingsPostMatch(); + if (Configuration.ShowProgressionChatPostFL) + PvPAddon.DisableFrontlinePostMatch(); + if (Configuration.ShowProgressionToastPostMatch) + PvPAddon.DisablePostMatchProgressionToast(); + CommandManager.RemoveHandler(CommandName); } |
