From 967e3028fd4d32be5378f6df08d7ebf7dee2e1c8 Mon Sep 17 00:00:00 2001 From: Alchav <59858495+Alchav@users.noreply.github.com> Date: Fri, 7 Jan 2022 22:45:57 -0500 Subject: [PATCH] LTTP - Cap item prices at 4x I think quadrupled prices will be plenty expensive, and this will stop people who pick "random" from getting 9999 priced items and potentially locking their multiworld behind absurd rupee grinds --- worlds/alttp/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/alttp/Options.py b/worlds/alttp/Options.py index 962f1297..772026d7 100644 --- a/worlds/alttp/Options.py +++ b/worlds/alttp/Options.py @@ -95,7 +95,7 @@ class ShopPriceModifier(Range): """Percentage modifier for shuffled item prices in shops""" range_start = 0 default = 100 - range_end = 10000 + range_end = 400 class WorldState(Choice): option_standard = 1