Skip to content

Commit

Permalink
update fixed lords cost
Browse files Browse the repository at this point in the history
  • Loading branch information
starknetdev committed Sep 25, 2024
1 parent 45d5517 commit e6b54cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/src/app/components/start/Spawn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { soundSelector, useUiSounds } from "@/app/hooks/useUiSound";
import useUIStore from "@/app/hooks/useUIStore";
import { battle } from "@/app/lib/constants";
import { networkConfig } from "@/app/lib/networkConfig";
import { formatLords } from "@/app/lib/utils";
import { Adventurer, FormData, GameToken } from "@/app/types";
import Image from "next/image";
import Lords from "public/icons/lords.svg";
Expand Down Expand Up @@ -216,7 +217,9 @@ export const Spawn = ({
) : (
<span className="flex flex-row gap-1 items-center justify-center">
<Lords className="self-center w-24 h-24 fill-current" />
<p className="text-6xl no-text-shadow">59</p>
<p className="text-6xl no-text-shadow">
{formatLords(lordsGameCost)}
</p>
</span>
)}
<span className="relative h-40 w-full">
Expand Down

0 comments on commit e6b54cd

Please sign in to comment.