Skip to content

Commit

Permalink
Fix Camel Hat and Filitered Water
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Oct 17, 2023
1 parent f5a2176 commit 4b15008
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
4 changes: 3 additions & 1 deletion src/tasks/boozedrop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ export const BoozeDropQuest: Quest = {
{
name: "Configure Trainset",
completed: () =>
(getWorkshed() === $item`model train set` && !canConfigure()) || !TrainSet.have(),
(getWorkshed() === $item`model train set` && !canConfigure()) ||
!TrainSet.have() ||
getWorkshed() === $item`Asdon Martin keyfob`,
do: (): void => {
const offset = get("trainsetPosition") % 8;
const newStations: TrainSet.Station[] = [];
Expand Down
10 changes: 1 addition & 9 deletions src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,17 +357,9 @@ export const LevelingQuest: Quest = {
},
{
name: "Filtered Water",
prepare: (): void => {
if (
have($skill`Summon Clip Art`) &&
get("tomeSummons") < 2 &&
!get("instant_saveClipArt", false) &&
get("instant_skipBorrowedTime", false)
)
create($item`cold-filtered water`, 1);
},
completed: () =>
get("instant_saveClipArt", false) ||
!get("instant_skipBorrowedTime", false) ||
have($effect`Purity of Spirit`) ||
forbiddenEffects.includes($effect`Purity of Spirit`),
do: (): void => {
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/runstart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export const RunStartQuest: Quest = {
have($item`dromedary drinking helmet`) ||
get("instant_saveClipArt", false) ||
!have($familiar`Melodramedary`) ||
!get("instant_camelExperiment", true),
!get("instant_camelExperiment", false),
do: (): void => {
if (!have($item`box of Familiar Jacks`)) create($item`box of Familiar Jacks`, 1);

Expand Down

0 comments on commit 4b15008

Please sign in to comment.