Skip to content

Commit

Permalink
camdozaalFishing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit committed Oct 16, 2023
1 parent 23dc0d3 commit 0871e10
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ export const camdozaalFishingTask: MinionTask = {
const catfish = camdozaalFishes.find(_fish => _fish.name === 'Raw catfish')!;

// Loot table based on users fishing level
const camdozaalFishTable = new LootTable();
if (currentFishLevel >= guppy.level) {
camdozaalFishTable.add(guppy.id);
}
const camdozaalFishTable = new LootTable().add(guppy.id);
if (currentFishLevel >= cavefish.level) {
camdozaalFishTable.add(cavefish.id);
}
Expand Down

0 comments on commit 0871e10

Please sign in to comment.