Fix emoji

This commit is contained in:
Hri7566 2024-02-22 20:29:31 -05:00
parent ccdc021e96
commit 4327a0f4b3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export const sack = new Command(
fishSack fishSack
.map( .map(
(fish: IFish) => (fish: IFish) =>
`${fish.emoji || ""}${fish.name}${ `${fish.emoji || "🐟"}${fish.name}${
fish.count ? ` (x${fish.count})` : "" fish.count ? ` (x${fish.count})` : ""
}` }`
) )