Skip to content

Commit

Permalink
Ensure if you save sugar sheets for later
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Nov 15, 2023
1 parent 843af82 commit 905240e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/tasks/runstart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export const RunStartQuest: Quest = {
},
{
name: "Fold Sugar Sheets",
completed: () => !have($item`sugar sheet`),
completed: () => !have($item`sugar sheet`) || args.experimentalsynth,
do: (): void => {
const nextMissingSugarItem =
$items`sugar shorts, sugar chapeau, sugar shank`.find((it) => !have(it)) || $item`none`;
Expand Down Expand Up @@ -598,9 +598,11 @@ export const RunStartQuest: Quest = {
{
name: "Get Distilled Fortified Wine",
ready: () => have($item`11-leaf clover`) || have($effect`Lucky!`),
completed: () => myInebriety() >= 1 || args.fortifiedwine ||
(get("_borrowedTimeUsed") && myAdventures() >= 60) ||
args.skipbt,
completed: () =>
myInebriety() >= 1 ||
args.fortifiedwine ||
(get("_borrowedTimeUsed") && myAdventures() >= 60) ||
args.skipbt,
do: (): void => {
if (!have($effect`Lucky!`)) use($item`11-leaf clover`);
if (!have($item`distilled fortified wine`)) adv1($location`The Sleazy Back Alley`, -1);
Expand Down

0 comments on commit 905240e

Please sign in to comment.