Skip to content

Commit

Permalink
Improve/fix Slepey tablet drop mechanic(oldschoolgg#5820)
Browse files Browse the repository at this point in the history
  • Loading branch information
themrrobert authored Apr 8, 2024
1 parent b722136 commit a9b4ad4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tasks/minions/minigames/nightmareActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ export const nightmareTask: MinionTask = {

const { newKC } = await user.incrementKC(monsterID, kc);

const ownsOrUsedTablet = user.bank.has('Slepey tablet') || user.bitfield.includes(BitField.HasSlepeyTablet);
const ownsOrUsedTablet =
user.bank.has('Slepey tablet') ||
(user.bitfield.includes(BitField.HasSlepeyTablet) && user.cl.has('Slepey Tablet'));
if (isPhosani) {
if (ownsOrUsedTablet) {
userLoot.remove('Slepey tablet', userLoot.amount('Slepey tablet'));
Expand Down

0 comments on commit a9b4ad4

Please sign in to comment.