Skip to content

Commit

Permalink
Ensure we check all barrels!
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Nov 10, 2023
1 parent 2fc476f commit 942b35d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/tasks/earlyleveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,8 @@ export const earlyLevelingQuest: Quest = {
),
outfit: () => ({
...baseOutfit(false),
familiar: have($familiar`Melodramedary`) ? $familiar`Melodramedary` : undefined,
acc2: have($item`Lil' Doctor™ bag`) ? $item`Lil' Doctor™ bag` : undefined,
modifier: `${baseOutfit().modifier}, -equip miniature crystal ball`,
}),
post: (): void => {
Expand Down
4 changes: 2 additions & 2 deletions src/tasks/spelldamage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ import { chooseFamiliar, sugarItemsAboutToBreak } from "../engine/outfit";
import { args } from "../args";

let triedDeepDark = false;
// eslint-disable-next-line no-octal
const barrels = [10, 11, 12, 20, 21, 22];

const barrels: string[] = [`00`, `01`, `02`, `10`, `11`, `12`, `20`, `21`, `22`];

export const SpellDamageQuest: Quest = {
name: "Spell Damage",
Expand Down

0 comments on commit 942b35d

Please sign in to comment.