diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 11:36:17 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 11:41:54 -0700 |
| commit | 6d32f281e5d826fb7777580420a1eb301ca4baea (patch) | |
| tree | 4b6d11b2816b9865689fea5cd5b6ce6a9fbbf603 /Malmstone/Addons/PvPMatchAddon.cs | |
| parent | fcecdca25688aca015d352602b7daf2610522d97 (diff) | |
fix: frontline record trigger calling wrong function
Diffstat (limited to 'Malmstone/Addons/PvPMatchAddon.cs')
| -rw-r--r-- | Malmstone/Addons/PvPMatchAddon.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Malmstone/Addons/PvPMatchAddon.cs b/Malmstone/Addons/PvPMatchAddon.cs index 94d35b0..bf5cc7d 100644 --- a/Malmstone/Addons/PvPMatchAddon.cs +++ b/Malmstone/Addons/PvPMatchAddon.cs @@ -32,20 +32,20 @@ namespace Malmstone.Addons Plugin.AddonLifeCycle.UnregisterListener(OnCrystallineConflictRecordTrigger); } - public void EnableRivalWingsPostMatch() - { - Plugin.AddonLifeCycle.RegisterListener(AddonEvent.PostSetup, "ManeuversRecord", OnRivalWingsRecordTrigger); - } public void EnableFrontlinePostMatch() { - Plugin.AddonLifeCycle.RegisterListener(AddonEvent.PostSetup, "FrontlineRecord", OnRivalWingsRecordTrigger); + Plugin.AddonLifeCycle.RegisterListener(AddonEvent.PostSetup, "FrontlineRecord", OnFrontlineRecordTrigger); } public void DisableFrontlinePostMatch() { - Plugin.AddonLifeCycle.UnregisterListener(AddonEvent.PostSetup, "FrontlineRecord", OnRivalWingsRecordTrigger); + Plugin.AddonLifeCycle.UnregisterListener(AddonEvent.PostSetup, "FrontlineRecord", OnFrontlineRecordTrigger); } + public void EnableRivalWingsPostMatch() + { + Plugin.AddonLifeCycle.RegisterListener(AddonEvent.PostSetup, "ManeuversRecord", OnRivalWingsRecordTrigger); + } public void DisableRivalWingsPostMatch() { Plugin.AddonLifeCycle.UnregisterListener(OnRivalWingsRecordTrigger); |
