diff --git a/CurrencyAlert/System.cs/CurrencyTracker.cs b/CurrencyAlert/System.cs/CurrencyTracker.cs index 5d5f768..5afb866 100644 --- a/CurrencyAlert/System.cs/CurrencyTracker.cs +++ b/CurrencyAlert/System.cs/CurrencyTracker.cs @@ -6,6 +6,7 @@ using CurrencyAlert.DataModels; using CurrencyAlert.Localization; using Dalamud.Logging; using KamiLib.ChatCommands; +using KamiLib.GameState; namespace CurrencyAlert.System.cs; @@ -45,6 +46,7 @@ public class CurrencyTracker : IDisposable private void OnZoneChange(object? sender, ushort e) { if (!Service.Configuration.ChatNotification) return; + if (Condition.IsBoundByDuty()) return; if (timer.Elapsed.Minutes >= 5 || timer.IsRunning == false) { @@ -68,4 +70,4 @@ public class CurrencyTracker : IDisposable cancellationTokenSource.Cancel(); cancellationTokenSource.Dispose(); } -} \ No newline at end of file +}