From 40ec0e9400dcfd7400daa62b4ef765352b233d3a Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 9 Sep 2024 22:01:18 -0700 Subject: fix: possible outdated frontline bonus is not marked properly on UI if user plays frontline without option enabled --- Malmstone/Malmstone.csproj | 2 +- Malmstone/Plugin.cs | 1 - Malmstone/Windows/ConfigWindow.cs | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Malmstone') diff --git a/Malmstone/Malmstone.csproj b/Malmstone/Malmstone.csproj index 1976052..1e70f01 100644 --- a/Malmstone/Malmstone.csproj +++ b/Malmstone/Malmstone.csproj @@ -3,7 +3,7 @@ - 1.0.6.0 + 1.0.6.5 A PVP Series Malmstones Level Calculator https://github.com/goatcorp/Malmstone AGPL-3.0-or-later diff --git a/Malmstone/Plugin.cs b/Malmstone/Plugin.cs index ffa1ea9..ed021e0 100644 --- a/Malmstone/Plugin.cs +++ b/Malmstone/Plugin.cs @@ -13,7 +13,6 @@ using System.Linq; using Malmstone.Utils; using Malmstone.Addons; using Dalamud.Game.Addon.Lifecycle; -using FFXIVClientStructs.FFXIV.Client.System.Framework; namespace Malmstone; diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index 0dc4e11..9b2fdea 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -178,6 +178,7 @@ public class ConfigWindow : Window, IDisposable Plugin.PvPAddon.EnableFrontlinePostMatch(); else if(!trackFrontlineBonus && !Configuration.ShowProgressionChatPostFL) Plugin.PvPAddon.DisableFrontlinePostMatch(); + Configuration.OutdatedFrontlineRewardBonus = true; Configuration.Save(); } if (ImGui.IsItemHovered()) -- cgit v1.2.3