Skip to content

Commit

Permalink
zepp mob fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Nov 17, 2024
1 parent c83ade7 commit b7311d1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/sections/quests/level11/ZeppelinMob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { $effect, $item, get, have } from "libram";
import Line from "../../../components/Line";
import { haveUnrestricted } from "../../../util/available";

const Zeppelin = () => {
const ZeppelinMob = () => {
const candyCaneSwordCane = $item`candy cane sword cane`;
const haveCcsc = haveUnrestricted(candyCaneSwordCane);
const sleazeProtestorsCleared = Math.max(
Expand All @@ -31,9 +31,7 @@ const Zeppelin = () => {
) : (
<>
{haveCcsc && !haveEquipped(candyCaneSwordCane) && (
<Line color="red.500" fontWeight="bold">
Equip your candy cane sword cane!
</Line>
<Line>Equip your candy cane sword cane!</Line>
)}
<Line>{80 - get("zeppelinProtestors")} protestors left.</Line>
<Line>
Expand All @@ -49,4 +47,4 @@ const Zeppelin = () => {
);
};

export default Zeppelin;
export default ZeppelinMob;

0 comments on commit b7311d1

Please sign in to comment.