Skip to content

Commit

Permalink
Autosell space blanket
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Sep 9, 2024
1 parent 246011a commit 4d150e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,10 @@ export const LevelingQuest: Quest = {
name: "Open Mayday",
ready: () => have($item`MayDay™ supply package`) && !args.savemayday,
completed: () => !have($item`MayDay™ supply package`),
do: () => use($item`MayDay™ supply package`),
do: (): void => {
use($item`MayDay™ supply package`);
if (have($item`space blanket`)) autosell($item`space blanket`, 1);
},
limit: { tries: 1 },
},
{
Expand Down

0 comments on commit 4d150e1

Please sign in to comment.