aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-09-03 11:36:17 -0700
committerPinapelz <yukais@pinapelz.com>2024-09-03 11:41:54 -0700
commit6d32f281e5d826fb7777580420a1eb301ca4baea (patch)
tree4b6d11b2816b9865689fea5cd5b6ce6a9fbbf603
parentfcecdca25688aca015d352602b7daf2610522d97 (diff)
fix: frontline record trigger calling wrong function
-rw-r--r--Malmstone/Addons/PvPMatchAddon.cs12
-rw-r--r--Malmstone/Windows/MainWindow.cs2
2 files changed, 7 insertions, 7 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);
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs
index 08550d4..6ead3a5 100644
--- a/Malmstone/Windows/MainWindow.cs
+++ b/Malmstone/Windows/MainWindow.cs
@@ -24,7 +24,7 @@ namespace Malmstone.Windows
{
SizeConstraints = new WindowSizeConstraints
{
- MinimumSize = new Vector2(440, 510),
+ MinimumSize = new Vector2(460, 530),
MaximumSize = new Vector2(float.MaxValue, float.MaxValue)
};
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage