From 0d114a088e3e21b9298140e07159c8774a47099e Mon Sep 17 00:00:00 2001 From: Chris Vickery Date: Fri, 17 May 2024 16:33:14 -0700 Subject: [PATCH] dont show redundant items though --- src/game/shop/shop.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/game/shop/shop.tsx b/src/game/shop/shop.tsx index 1f6955e..940f32b 100644 --- a/src/game/shop/shop.tsx +++ b/src/game/shop/shop.tsx @@ -174,6 +174,9 @@ export function ItemTypeShop({ }} > {items.map((shopItem) => { + if (shopItem.id !== shopItem.alias) { + return null; + } return (