Skip to content

Commit

Permalink
sniffs no longer overwrite banishes
Browse files Browse the repository at this point in the history
  • Loading branch information
horrible-little-slime committed Oct 5, 2024
1 parent 8cbba8c commit 8b59612
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/garbo/src/fights.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1978,12 +1978,7 @@ function getBestItemStealZone(mappingMonster = false): ItemStealZone | null {
(zone) =>
zone.isOpen() &&
(mappingMonster || !zone.requireMapTheMonsters) &&
asArray(zone.monster).some(
(m) =>
!isBanished(m) ||
get("olfactedMonster") === m ||
get("_gallapagosMonster") === m,
),
asArray(zone.monster).some((m) => !isBanished(m)),
);
const vorticesAvail = have($item`industrial fire extinguisher`)
? Math.floor(get("_fireExtinguisherCharge") / 10)
Expand Down

0 comments on commit 8b59612

Please sign in to comment.