From 28d2b10385001776e48835b83af8ce7a79f399a1 Mon Sep 17 00:00:00 2001 From: Ryan Lanny Jenkins Date: Wed, 4 Jun 2025 22:21:56 -0500 Subject: [PATCH] Make the sell price of grapes less than the cost of grape juice. --- src/constants/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/index.ts b/src/constants/index.ts index f4ad4ab..244aabd 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -224,14 +224,14 @@ export const ITEMS: Record = { name: 'Grape', emoji: '๐Ÿ‡', buyPrice: null, - sellPrice: 20, + sellPrice: 3, }, grape_juice: { id: 'grape_juice', name: 'Grape Juice', emoji: '๐Ÿ‡juice', buyPrice: null, - sellPrice: 100, + sellPrice: 50, }, wine: { id: 'wine',