From 4f61d44dfe89c6c98712da930b46cf795fa08d6e Mon Sep 17 00:00:00 2001 From: kittenchilly Date: Wed, 27 Dec 2023 17:02:51 -0600 Subject: [PATCH] Add Treasure Factor to Nugget and Tiny Mushroom (#3836) --- src/data/items.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/items.h b/src/data/items.h index 457e00a058..4bb19b4c9a 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -2076,7 +2076,7 @@ const struct Item gItems[] = [ITEM_NUGGET] = { .name = _("Nugget"), - .price = 10000, + .price = 10000 * TREASURE_FACTOR, .description = COMPOUND_STRING("A nugget of pure\n" "gold. Can be sold at\n" "a high price."), @@ -2102,7 +2102,7 @@ const struct Item gItems[] = [ITEM_TINY_MUSHROOM] = { .name = _("Tiny Mushroom"), - .price = 500, + .price = 500 * TREASURE_FACTOR, .description = COMPOUND_STRING("A plain mushroom\n" "that would sell\n" "at a cheap price."),