diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-08 20:31:32 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-08 20:32:14 -0700 |
| commit | a79e3b874d184bb72088a0adb0c7fcafef1ab4d9 (patch) | |
| tree | cb1152f746cece1ff13c35bb12b0de0e0f8b2d99 | |
| parent | 720bd9c3486688d5e562c2a01a3f39b47fc2ff0d (diff) | |
fix: typo in losing streak buff ready text
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs index 1617a00..e6e34aa 100644 --- a/Malmstone/Windows/MainWindow.cs +++ b/Malmstone/Windows/MainWindow.cs @@ -122,12 +122,12 @@ namespace Malmstone.Windows { if(Plugin.PvPService.ConsecutiveThirdPlaceFrontline == 1) { - ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "You'll receive 10%% reward bonus if you place 3rd"); + ImGui.TextColored(new Vector4(0.0f, 1.0f, 0.0f, 1.0f), "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(); } |
