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."),