Skip to content

Commit

Permalink
mining master cape
Browse files Browse the repository at this point in the history
  • Loading branch information
I-am-TURBO committed Mar 9, 2024
1 parent de4d157 commit 525e1a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/minions/miningActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export const miningTask: MinionTask = {
const spiritOre = stoneSpirits.find(t => t.ore.id === ore.id);
const amountOfSpiritsToUse =
spiritOre !== undefined ? Math.min(quantity, user.bank.amount(spiritOre.spirit.id)) : 0;
const hasMiningMasterCape = user.hasEquipped('Mining master cape');
const hasMiningMasterCape = User.hasEquippedOrInBank('Mining master cape');
const portentResult =
amountOfSpiritsToUse > 0
? await chargePortentIfHasCharges({
Expand Down

0 comments on commit 525e1a7

Please sign in to comment.