Skip to content

Commit

Permalink
Fix automatic job error spam on DoH
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Sep 30, 2023
1 parent d596165 commit 45e25da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions XIVSlothCombo/Window/Tabs/PvEFeatures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using XIVSlothCombo.Window.Functions;
using XIVSlothCombo.Window.MessagesNS;
using Dalamud.Interface.Utility;
using System.Reflection.Metadata.Ecma335;

namespace XIVSlothCombo.Window.Tabs
{
Expand Down Expand Up @@ -171,6 +172,9 @@ private static void OpenJobAutomatically()
if (id is >= 16 and <= 18)
id = DOL.JobID;

if (id == DOH.JobID)
return;

if (id is not null)
{
var currentJob = CustomComboInfoAttribute.JobIDToName((byte)id);
Expand Down

0 comments on commit 45e25da

Please sign in to comment.