aboutsummaryrefslogtreecommitdiffstats
path: root/Malmstone
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-09-08 21:26:34 -0700
committerPinapelz <yukais@pinapelz.com>2024-09-08 21:31:56 -0700
commit7ee1be7c6882257a943668acbfd17ba104715872 (patch)
treeca811a207d6a7d7c61eeba9c377e90144be9a226 /Malmstone
parent26a92ad92a2f4c649c72744937e7309cb245cc81 (diff)
fix: reward bonus text on mainwindow
Diffstat (limited to 'Malmstone')
-rw-r--r--Malmstone/Windows/MainWindow.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs
index 585815e..cf0e939 100644
--- a/Malmstone/Windows/MainWindow.cs
+++ b/Malmstone/Windows/MainWindow.cs
@@ -157,9 +157,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 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 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();
@@ -169,12 +169,12 @@ 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 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}%." +
- "\nThis increased bonus will also apply to the match where this happens.");
+ 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();
}
}
@@ -186,8 +186,8 @@ namespace Malmstone.Windows
if (ImGui.IsItemHovered())
{
ImGui.BeginTooltip();
- ImGui.Text("This information may be outdated due to Frontline tracking loading and unloading!" +
- "\nCalculations will refresh after your next match of Frontlines");
+ ImGui.Text("This information may be outdated due to Frontline tracking unloading!" +
+ "\nCalculations will refresh after your next match of Frontline");
ImGui.EndTooltip();
}
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage