aboutsummaryrefslogtreecommitdiffstats
path: root/Malmstone
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-08-26 11:16:42 -0700
committerPinapelz <yukais@pinapelz.com>2025-08-26 11:16:42 -0700
commit26a0ade115f6d12cd67d8bcc2f31d367a5e70fee (patch)
tree591cb07ef6a3d573a3b83a3cebf160eca0a5076e /Malmstone
parentf2af519d643f559e135046acab1c14e9326d579b (diff)
fix: remove duplicate % sign from frontline bonus tracking
Diffstat (limited to 'Malmstone')
-rw-r--r--Malmstone/Windows/MainWindow.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs
index 616dc6a..f7b65af 100644
--- a/Malmstone/Windows/MainWindow.cs
+++ b/Malmstone/Windows/MainWindow.cs
@@ -150,12 +150,12 @@ namespace Malmstone.Windows
{
if(Plugin.PvPService.ConsecutiveThirdPlaceFrontline == 1)
{
- ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "Primed For Bonus: You'll receive a 10%% reward bonus if you place 3rd");
+ ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "Primed For Bonus: You'll receive a 10% reward bonus if you place 3rd");
}
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
- ImGui.Text("You're primed for a reward bonus! You will get a 10%% reward bonus if you place 3rd again" +
+ ImGui.Text("You're primed for a reward bonus! You will get a 10% reward bonus if you place 3rd again" +
"\nCounter resets if you rank 1st");
ImGui.EndTooltip();
}
@@ -164,9 +164,9 @@ namespace Malmstone.Windows
else
{
if (Plugin.PvPService.CurrentFrontlineLosingBonus != 50)
- ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "You'll receive a " + Plugin.PvPService.CurrentFrontlineLosingBonus + "%% reward bonus after placing 1st or 2nd");
+ ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "You'll receive a " + Plugin.PvPService.CurrentFrontlineLosingBonus + "% reward bonus after placing 1st or 2nd");
else
- ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "You'll receive a " + Plugin.PvPService.CurrentFrontlineLosingBonus + "%% reward bonus after placing 1st, 2nd, or 3rd");
+ ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "You'll receive a " + Plugin.PvPService.CurrentFrontlineLosingBonus + "% reward bonus after placing 1st, 2nd, or 3rd");
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
@@ -176,11 +176,11 @@ namespace Malmstone.Windows
}
if (Plugin.PvPService.CurrentFrontlineLosingBonus != 50)
{
- ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "Your reward bonus will increase to " + (Plugin.PvPService.CurrentFrontlineLosingBonus + 10) + "%% if you place 3rd");
+ ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "Your reward bonus will increase to " + (Plugin.PvPService.CurrentFrontlineLosingBonus + 10) + "% if you place 3rd");
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
- ImGui.Text($"Finishing 3rd again will increase your bonus to {Plugin.PvPService.CurrentFrontlineLosingBonus + 10}%%" +
+ ImGui.Text($"Finishing 3rd again will increase your bonus to {Plugin.PvPService.CurrentFrontlineLosingBonus + 10}%" +
"\nThis increased bonus will also apply to the match where this happens");
ImGui.EndTooltip();
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage