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/MainWindow.cs | |
| parent | bd88116ea3b9d49725d597d635d1938ab8d3f1d4 (diff) | |
change rank to series level
Diffstat (limited to 'Malmstone/Windows/MainWindow.cs')
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 8 |
1 files changed, 4 insertions, 4 deletions
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(); |
