Skip to content

Commit

Permalink
Prevent cannoning in catacombs
Browse files Browse the repository at this point in the history
  • Loading branch information
DayV-git committed Nov 5, 2024
1 parent 6580f09 commit b9f7736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/minions/monsterActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export function doMonsterTrip(data: newOptions) {
});

const superiorTable = slayerContext.hasSuperiorsUnlocked && monster.superior ? monster.superior : undefined;
const isInCatacombs = (!usingCannon ? (monster.existsInCatacombs ?? undefined) : undefined) && !isInWilderness;
const isInCatacombs = (!(usingCannon || cannonMulti) ? (monster.existsInCatacombs ?? undefined) : undefined) && !isInWilderness;

const hasRingOfWealthI = gearBank.gear.wildy.hasEquipped('Ring of wealth (i)') && isInWilderness;
if (hasRingOfWealthI) {
Expand Down

0 comments on commit b9f7736

Please sign in to comment.