Skip to content

Commit

Permalink
Remove some clue roll restrictions (#6226)
Browse files Browse the repository at this point in the history
  • Loading branch information
DayV-git authored and gc committed Dec 11, 2024
1 parent 4c84115 commit ab5c157
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/tasks/minions/minigames/tobActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { randArrItem, roll, shuffleArr } from 'e';
import { Bank } from 'oldschooljs';

import { drawChestLootImage } from '../../../lib/bankImage';
import { BOT_TYPE, CHINCANNON_MESSAGES, Emoji } from '../../../lib/constants';
import { CHINCANNON_MESSAGES, Emoji } from '../../../lib/constants';
import { tobMetamorphPets } from '../../../lib/data/CollectionsExport';
import { TOBRooms, TOBUniques } from '../../../lib/data/tob';
import { trackLoot } from '../../../lib/lootTrack';
Expand Down Expand Up @@ -156,13 +156,6 @@ export const tobTask: MinionTask = {
// Refund initial 100k entry cost
userLoot.add('Coins', 100_000);

// Remove elite clue scroll if OSB & user has one in bank
if (BOT_TYPE === 'OSB') {
if (user.owns('Clue scroll (elite)')) {
userLoot.remove('Clue scroll (elite)', 1);
}
}

// Add this raids loot to the raid's total loot:
totalLoot.add(userLoot);

Expand Down

0 comments on commit ab5c157

Please sign in to comment.