From be48f96f654d0c91ce1c425b1b249e7a018c9c96 Mon Sep 17 00:00:00 2001 From: caitsith2 Date: Thu, 18 Jun 2020 08:49:54 -0700 Subject: [PATCH] Actually make sure excess heart pieces/containers become 20 rupees, since the max is 20 hearts anyways. --- ItemList.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ItemList.py b/ItemList.py index facb9b2f..62f6b662 100644 --- a/ItemList.py +++ b/ItemList.py @@ -64,8 +64,8 @@ difficulties = { progressive_armor_limit = 2, progressive_bow_limit = 2, progressive_bottle_limit = 4, - boss_heart_container_limit = 255, - heart_piece_limit = 255, + boss_heart_container_limit = 10, + heart_piece_limit = 24, ), 'hard': Difficulty( baseitems = normalbaseitems,