Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: change method name from BurstItem to Tincture.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jan 31, 2023
1 parent 9902932 commit 3b4ff8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ private static readonly IBaseItem
//意力
TinctureofIntelligence6 = new BaseItem(36112, 65535);

protected bool UseBurstItem(out IAction act)
protected bool UseTincture(out IAction act)
{
act = null;

Expand Down
2 changes: 1 addition & 1 deletion RotationSolver/Rotations/Melee/NIN/NIN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private protected override bool AttackAbility(byte abilitiesRemaining, out IActi

if (!IsMoving && TenChiJin.CanUse(out act)) return true;
if (Kassatsu.CanUse(out act)) return true;
if (UseBurstItem(out act)) return true;
if (UseTincture(out act)) return true;

if (Bunshin.CanUse(out act)) return true;
if (HellfrogMedium.CanUse(out act)) return true;
Expand Down
4 changes: 2 additions & 2 deletions docs/RotationDev/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ If you want your UI and description to support multiple languages, Add your cust



## BurstItem
## Tincture

You can use burst item when you call `UseBurstItem` method in rotation. It will only be used in full party at level 90.
You can use tincture when you call `UseTincture` method in rotation. It will only be used in full party at level 90.

0 comments on commit 3b4ff8b

Please sign in to comment.