Skip to content

Commit

Permalink
Merge pull request #496 from FFXIV-CombatReborn/snoop
Browse files Browse the repository at this point in the history
Fixed tincture bug from lumina update
  • Loading branch information
LTS-FFXIV authored Dec 30, 2024
2 parents e818a01 + 0a7f9c5 commit 097bdd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RotationSolver.Basic/Actions/MedicineItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal class MedicineItem : BaseItem

public MedicineItem(Item item) : base(item)
{
Type = _item.Icon switch // used to be Unknown19, not entirely sure if Icon is the correct property to use
Type = _item.Unknown4 switch // Unknown4 is column for the medicine type
{
10120 => MedicineType.Strength,
10140 => MedicineType.Dexterity,
Expand All @@ -55,5 +55,5 @@ public MedicineItem(Item item) : base(item)
};
}

protected override bool CanUseThis => DataCenter.RightNowTinctureUseType == TinctureUseType.Anywhere || DataCenter.RightNowTinctureUseType == TinctureUseType.InHighEndDuty;
protected override bool CanUseThis => DataCenter.RightNowTinctureUseType == TinctureUseType.Anywhere || (DataCenter.RightNowTinctureUseType == TinctureUseType.InHighEndDuty && DataCenter.IsInHighEndDuty);
}

0 comments on commit 097bdd3

Please sign in to comment.