diff options
Diffstat (limited to 'Malmstone')
| -rw-r--r-- | Malmstone/Malmstone.csproj | 2 | ||||
| -rw-r--r-- | Malmstone/Malmstone.json | 4 | ||||
| -rw-r--r-- | Malmstone/Plugin.cs | 2 | ||||
| -rw-r--r-- | Malmstone/Windows/ConfigWindow.cs | 2 | ||||
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 8 |
5 files changed, 9 insertions, 9 deletions
diff --git a/Malmstone/Malmstone.csproj b/Malmstone/Malmstone.csproj index 4da4bfb..3f1e5c7 100644 --- a/Malmstone/Malmstone.csproj +++ b/Malmstone/Malmstone.csproj @@ -4,7 +4,7 @@ <PropertyGroup> <Version>1.0.0.0</Version> - <Description>A PVP Series Malmstones Experience Calculator</Description> + <Description>A PVP Series Malmstones Level Calculator</Description> <PackageProjectUrl>https://github.com/goatcorp/Malmstone</PackageProjectUrl> <PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression> <IsPackable>false</IsPackable> diff --git a/Malmstone/Malmstone.json b/Malmstone/Malmstone.json index 1159d2a..d1597af 100644 --- a/Malmstone/Malmstone.json +++ b/Malmstone/Malmstone.json @@ -1,8 +1,8 @@ { "Author": "pinapelz", "Name": "Malmstone Calculator", - "Punchline": "A PVP Series Malmstones Experience Calculator", - "Description": "Calculate how much more PVP you have to play before reaching a certain rank in the current PVP Series\nUse /pmalm to open the main window", + "Punchline": "A PVP Series Malmstone Level Calculator", + "Description": "Calculate how much more PVP you have to play before reaching a certain series level in the current PVP Series\nUse /pmalm to open the main window", "ApplicableVersion": "any", "Tags": [ "pvp", diff --git a/Malmstone/Plugin.cs b/Malmstone/Plugin.cs index 08c86eb..695927f 100644 --- a/Malmstone/Plugin.cs +++ b/Malmstone/Plugin.cs @@ -110,7 +110,7 @@ public sealed class Plugin : IDalamudPlugin includeAll = true; } var seString = new SeString(new List<Payload>()); - seString.Append(new TextPayload("[To Rank " + targetRank + "]")); + seString.Append(new TextPayload("[To Series Level " + targetRank + "]")); if (includeAll || specs.Contains("cc")) { 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(); |
