Skip to content

Commit

Permalink
Small sim improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Dec 8, 2023
1 parent f599f10 commit 8d06da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export function computeFamiliarWeight(): number {
const empathy = have($skill`Empathy of the Newt`) ? 5 : 0;
const heart = have($skill`Summon Candy Heart`) ? 5 : 0;
const leash = have($skill`Leash of Linguini`) ? 5 : 0;
const puzzle = toInt(getProperty("puzzleChampBonus"));
const puzzle = Witchess.have() ? toInt(getProperty("puzzleChampBonus")) : 0;
const robot =
computeCombatFrequency(false) === -100 &&
have($familiar`Comma Chameleon`) &&
Expand Down

0 comments on commit 8d06da5

Please sign in to comment.