Skip to content

Commit

Permalink
removed empty file & addressed feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit committed Oct 16, 2023
1 parent d224096 commit 1e7cd3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
3 changes: 0 additions & 3 deletions src/lib/util/calcMaxTripLength.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ export function calcMaxTripLength(user: MUser, activity?: activity_type_enum) {
case 'Raids':
case 'TheatreOfBlood':
case 'TombsOfAmascut':
case 'CamdozaalMining':
case 'CamdozaalSmithing':
case 'CamdozaalFishing':
case 'Pickpocket':
case 'SoulWars':
case 'Cyclops': {
Expand Down
18 changes: 4 additions & 14 deletions src/tasks/minions/camdozaalActivity/camdozaalFishingActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,16 @@ export const camdozaalFishingTask: MinionTask = {
}
if (fishingRoll === 5) {
barroniteShards += 3;
}
if (fishingRoll !== 5) {
} else {
const fishCaught = camdozaalFishTable.roll();

if (fishCaught.has(guppy.id)) {
guppyCaught++;
continue;
}
if (fishCaught.has(cavefish.id)) {
} else if (fishCaught.has(cavefish.id)) {
cavefishCaught++;
continue;
}
if (fishCaught.has(tetra.id)) {
} else if (fishCaught.has(tetra.id)) {
tetraCaught++;
continue;
}
if (fishCaught.has(catfish.id)) {
} else if (fishCaught.has(catfish.id)) {
catfishCaught++;
continue;
}
}
}

Expand Down
Empty file.

0 comments on commit 1e7cd3a

Please sign in to comment.