Core & LttP: remove 255 player limit

This commit is contained in:
Fabian Dill
2021-10-21 08:15:47 +02:00
parent 8fbbaf7fcb
commit 2fe5459c56
7 changed files with 19 additions and 14 deletions

View File

@@ -583,6 +583,6 @@ def price_to_funny_price(item: dict, world, player: int):
if any(x in item['item'] for x in price_blacklist[p_type]):
continue
else:
item['price'] = min(price_chart[p_type](item['price']) , 255)
item['price'] = min(price_chart[p_type](item['price']), 255)
item['price_type'] = p_type
break