diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 12:07:00 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 12:07:00 -0700 |
| commit | 49b0ad40b51845bbbde68a4133f2b15414cebade (patch) | |
| tree | 937859e3e7792e43641d32b7b2f2d02513608b15 /Malmstone/Addons | |
| parent | 6d32f281e5d826fb7777580420a1eb301ca4baea (diff) | |
window size and UI enhancements
- reduce extra spacing in windows
- make config window resizeable
- move unclaimed reward notification to make main window more compact
- remove addon trigger chat message
Diffstat (limited to 'Malmstone/Addons')
| -rw-r--r-- | Malmstone/Addons/PvPMatchAddon.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Malmstone/Addons/PvPMatchAddon.cs b/Malmstone/Addons/PvPMatchAddon.cs index bf5cc7d..7912665 100644 --- a/Malmstone/Addons/PvPMatchAddon.cs +++ b/Malmstone/Addons/PvPMatchAddon.cs @@ -39,7 +39,7 @@ namespace Malmstone.Addons public void DisableFrontlinePostMatch() { - Plugin.AddonLifeCycle.UnregisterListener(AddonEvent.PostSetup, "FrontlineRecord", OnFrontlineRecordTrigger); + Plugin.AddonLifeCycle.UnregisterListener(OnFrontlineRecordTrigger); } public void EnableRivalWingsPostMatch() @@ -55,7 +55,6 @@ namespace Malmstone.Addons // Runs on the result screen of the respective game mode private void OnCrystallineConflictRecordTrigger(AddonEvent eventType, AddonArgs addonInfo) { - Plugin.Chat.Print("Triggered MKS Record"); PvPSeriesInfo? seriesInfo = Plugin.PvPService.GetPvPSeriesInfo(); if (seriesInfo == null) return; if (Plugin.Configuration.ShowProgressionToastPostMatch) @@ -66,7 +65,6 @@ namespace Malmstone.Addons private void OnFrontlineRecordTrigger(AddonEvent eventType, AddonArgs addonInfo) { - Plugin.Chat.Print("Triggered Frontline Record"); PvPSeriesInfo? seriesInfo = Plugin.PvPService.GetPvPSeriesInfo(); if (seriesInfo == null) return; if (Plugin.Configuration.ShowProgressionToastPostMatch) @@ -77,7 +75,6 @@ namespace Malmstone.Addons private void OnRivalWingsRecordTrigger(AddonEvent eventType, AddonArgs addonInfo) { - Plugin.Chat.Print("Triggered Maneuvers Record"); PvPSeriesInfo? seriesInfo = Plugin.PvPService.GetPvPSeriesInfo(); if (seriesInfo == null) return; if (Plugin.Configuration.ShowProgressionToastPostMatch) |
