Skip to content

Commit

Permalink
Fix camdozaal fishing (#5768)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Mar 10, 2024
1 parent db8d8a6 commit c2371da
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/tasks/minions/camdozaalActivity/camdozaalFishingActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ export const camdozaalFishingTask: MinionTask = {

// Loot table based on users fishing level
const camdozaalFishTable = new LootTable()
.add(guppy.id)
.oneIn(256, 'Barronite handle')
.oneIn(5, 'Barronite shards', 3);
.oneIn(5, 'Barronite shards', 3)
.add(guppy.id, 1, 4);
if (currentFishLevel >= cavefish.level) {
camdozaalFishTable.add(cavefish.id);
camdozaalFishTable.add(cavefish.id, 1, 3);
}
if (currentFishLevel >= tetra.level) {
camdozaalFishTable.add(tetra.id);
camdozaalFishTable.add(tetra.id, 1, 2);
}
if (currentFishLevel >= catfish.level) {
camdozaalFishTable.add(catfish.id);
camdozaalFishTable.add(catfish.id, 1, 1);
}

let guppyCaught = 0;
Expand All @@ -58,7 +58,7 @@ export const camdozaalFishingTask: MinionTask = {
loot.add(tetra.id);
} else if (fishCaught.has(catfish.id)) {
catfishCaught++;
loot.add(cavefish.id);
loot.add(catfish.id);
} else {
loot.add(fishCaught);
}
Expand Down

0 comments on commit c2371da

Please sign in to comment.