Skip to content

Commit

Permalink
Familiar Jacks Pull Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Nov 18, 2023
1 parent e67ea1a commit 8cb86dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,11 @@ export const LevelingQuest: Quest = {
{
name: "Pull Some Jacks",
ready: () => args.dopulls,
completed: () => have($skill`Summon Clip Art`) || !have($familiar`Comma Chameleon`),
completed: () =>
have($skill`Summon Clip Art`) ||
!have($familiar`Comma Chameleon`) ||
have($item`box of Familiar Jacks`) ||
checkPull($item`box of Familiar Jacks`),
do: (): void => {
takeStorage($item`box of Familiar Jacks`, 1);
},
Expand Down

0 comments on commit 8cb86dd

Please sign in to comment.