aboutsummaryrefslogtreecommitdiffstats
path: root/Malmstone/Addons/PvPMatchAddon.cs
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-11-03 09:29:02 -0800
committerPinapelz <yukais@pinapelz.com>2025-11-03 09:31:23 -0800
commite3a338de95aa0764d25f4aaff4a88fdc00c2fe06 (patch)
tree0cad8577f2037f7c3d2f0a38ce7c88da06af8d7a /Malmstone/Addons/PvPMatchAddon.cs
parentb38f8b7c8f32a1729e641cdde9efd8e69733ea6b (diff)
parent87f3e45ff80aad7ec0ac51357d8db41b61932f64 (diff)
Merge pull request #1 from octylFractal/fix/post-frontlines-match-count
Fix post-Frontlines message using wrong match count
Diffstat (limited to 'Malmstone/Addons/PvPMatchAddon.cs')
-rw-r--r--Malmstone/Addons/PvPMatchAddon.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Malmstone/Addons/PvPMatchAddon.cs b/Malmstone/Addons/PvPMatchAddon.cs
index b50d3f9..1845661 100644
--- a/Malmstone/Addons/PvPMatchAddon.cs
+++ b/Malmstone/Addons/PvPMatchAddon.cs
@@ -225,8 +225,8 @@ namespace Malmstone.Addons
seString.Append(new TextPayload("[Frontlines to Level " + TargetGoal+ "]\n"));
seString.Append(new UIForegroundPayload(518));
seString.Append(new TextPayload($"Take 1st Place: {flResultData.FrontlineWin} " + (flResultData.FrontlineWin == 1 ? "time" : "times") +" (" + (flResultData.FrontlineDailyWin) + ")\n"));
- seString.Append(new TextPayload($"Take 2nd Place: {flResultData.FrontlineWin} " + (flResultData.FrontlineWin == 1 ? "time" : "times") + " (" + (flResultData.FrontlineDailyLose2nd) + ")\n"));
- seString.Append(new TextPayload($"Take 3rd Place: {flResultData.FrontlineWin} " + (flResultData.FrontlineWin == 1 ? "time" : "times") + " (" + (flResultData.FrontlineDailyLose3rd) + ")\n"));
+ seString.Append(new TextPayload($"Take 2nd Place: {flResultData.FrontlineLose2nd} " + (flResultData.FrontlineLose2nd == 1 ? "time" : "times") + " (" + (flResultData.FrontlineDailyLose2nd) + ")\n"));
+ seString.Append(new TextPayload($"Take 3rd Place: {flResultData.FrontlineLose3rd} " + (flResultData.FrontlineLose3rd == 1 ? "time" : "times") + " (" + (flResultData.FrontlineDailyLose3rd) + ")\n"));
seString.Append(new TextPayload($"Estimated Matches: {flResultData.FrontlineExpectedMatches} (" + (flResultData.FrontlineDailyExpectedMatches) + ")\n"));
seString.Append(new TextPayload($"Frontline Roulette Shown in Parentheses"));
seString.Append(UIForegroundPayload.UIForegroundOff);
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage