Skip to content

Commit

Permalink
this might be better?
Browse files Browse the repository at this point in the history
  • Loading branch information
horrible-little-slime committed Dec 25, 2024
1 parent 44d4e1e commit e58c969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
} from "libram";

import { bestJuneCleaverOption, shouldSkip } from "./juneCleaver";
import { getIsland, printd, sober } from "./lib";
import { getIslands, printd, sober } from "./lib";
import Macro from "./macro";
import * as OrbManager from "./orbmanager";

Expand All @@ -45,7 +45,7 @@ export class CrimboEngine extends Engine<never, CrimboTask> {
if (
CrystalBall.have() &&
!haveEquipped(CrystalBall.orb) &&
CrystalBall.getPrediction().has(getIsland().location)
getIslands().some(({ location }) => CrystalBall.getPrediction().has(location))
) {
OrbManager.shrineGaze();
}
Expand Down

0 comments on commit e58c969

Please sign in to comment.