Skip to content

Commit

Permalink
tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Aug 25, 2024
1 parent f256b9f commit 0bb384d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions client/src/sections/resources/FreeFights.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ const freeFights: [string, () => React.ReactNode][] = [
: "/inventory.php?ftext=cursed magnifying glass"
}
>
{plural(5 - voidFreeFights, "free void fight")}.
{plural(5 - voidFreeFights, "free void fight")} (
{get("cursedMagnifyingGlassCount")}/13 charge).
</Line>
)
);
Expand All @@ -75,7 +76,7 @@ const freeFights: [string, () => React.ReactNode][] = [
(larvaQuest || groveQuest) &&
tentacleFought && (
<Line href="/place.php?whichplace=forestvillage&action=fv_scientest">
Free eldritch tentacle in the forest.
1 free eldritch tentacle in the forest.
</Line>
)
);
Expand All @@ -88,7 +89,9 @@ const freeFights: [string, () => React.ReactNode][] = [
const evoked = get("_eldritchHorrorEvoked", false);
return (
haveEvoke &&
!evoked && <Line>Free eldritch horror via Evoke Eldritch Horror.</Line>
!evoked && (
<Line>1 free eldritch horror via Evoke Eldritch Horror.</Line>
)
);
},
],
Expand Down
1 change: 1 addition & 0 deletions client/src/util/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const PARENTS = {
Woods: "/woods.php",
Town: "/town.php",
Plains: "/place.php?whichplace=plains",
BatHole: "/place.php?whichplace=bathole",
Beanstalk: "/place.php?whichplace=beanstalk",
Mountains: "/mountains.php",
"The Red Zeppelin's Mooring": "/place.php?whichplace=zeppelin",
Expand Down

0 comments on commit 0bb384d

Please sign in to comment.