Skip to content

Commit

Permalink
Okeydoke.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Sep 28, 2024
1 parent 3d6d29d commit 1d67743
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/garbo/src/familiar/freeFightFamiliar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
get,
getModifier,
have,
Snapper,
} from "libram";
import { canOpenRedPresent } from ".";
import { garboValue } from "../garboValue";
Expand Down Expand Up @@ -95,7 +96,7 @@ export function menu(options: MenuOptions = {}): GeneralFamiliar[] {
});
}

if (mode === "target") {
if (mode === "target" && Snapper.have()) {
familiarMenu.push({
familiar: $familiar`Red-Nosed Snapper`,
expectedValue: snapperValue(),
Expand Down Expand Up @@ -147,8 +148,7 @@ export function menu(options: MenuOptions = {}): GeneralFamiliar[] {
!(familiar.physicalDamage || familiar.elementalDamage)) &&
!excludeFamiliar.some(
(excludedFamiliar) => excludedFamiliar === familiar,
) &&
have(familiar),
),
);
}

Expand Down

0 comments on commit 1d67743

Please sign in to comment.