diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-28 12:19:17 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-28 12:19:17 -0700 |
| commit | a7889477df30cfa50dc472f0bb7b9895eace8d61 (patch) | |
| tree | 5747445cfdf852eb6d2485adeec5fdd7659ec7f3 /Malmstone/Windows | |
| parent | bd88116ea3b9d49725d597d635d1938ab8d3f1d4 (diff) | |
change rank to series level
Diffstat (limited to 'Malmstone/Windows')
| -rw-r--r-- | Malmstone/Windows/ConfigWindow.cs | 2 | ||||
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index 96660cb..0ee997c 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -26,7 +26,7 @@ public class ConfigWindow : Window, IDisposable public override void Draw() { - ImGui.Text("Default Series Rank"); + ImGui.Text("Default Target Series Level"); var savedTargetSeriesRank = Configuration.DefaultTargetRankProperty; if (ImGui.InputInt("##SavedTargetSeriesRank", ref savedTargetSeriesRank, 1)) { diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs index 111d877..0d288b2 100644 --- a/Malmstone/Windows/MainWindow.cs +++ b/Malmstone/Windows/MainWindow.cs @@ -41,15 +41,15 @@ namespace Malmstone.Windows var pvpInfo = PvPService.GetPvPSeriesInfo(); if (pvpInfo != null) { - ImGui.Text($"Current Series Rank: {pvpInfo.CurrentSeriesRank}"); - ImGui.Text($"Current Rank Series Experience: {pvpInfo.SeriesExperience}"); + ImGui.Text($"Current Series Level: {pvpInfo.CurrentSeriesRank}"); + ImGui.Text($"Current Level Experience Gained: {pvpInfo.SeriesExperience}"); if (pvpInfo.CurrentSeriesRank != pvpInfo.ClaimedSeriesRank) { ImGui.Text("Don't forget to claim your rank rewards!"); } ImGui.Spacing(); - ImGui.Text("Target Rank:"); + ImGui.Text("Target Series Level:"); ImGui.InputInt("##TargetSeriesRank", ref TargetSeriesRank, 1); // Bounds checking to ensure no overflows @@ -73,7 +73,7 @@ namespace Malmstone.Windows var xpResult = _cachedXpResult; ImGui.Spacing(); - ImGui.Text($"You have {xpResult.RemainingXp} remaining series EXP to go until you reach rank {xpResult.TargetLevel}"); + ImGui.Text($"You have {xpResult.RemainingXp} remaining series EXP to go until you reach level {xpResult.TargetLevel}"); ImGui.Spacing(); ImGui.Separator(); |
