Apples/BeeTraps/Fairies now spawn automatically under pots

This commit is contained in:
codemann8
2023-05-08 05:03:53 -05:00
parent e1092b7def
commit 393cbdd0ab
3 changed files with 4 additions and 3 deletions

2
Rom.py
View File

@@ -38,7 +38,7 @@ from source.dungeon.RoomList import Room0127
JAP10HASH = '03a63945398191337e896e5771f77173' JAP10HASH = '03a63945398191337e896e5771f77173'
RANDOMIZERBASEHASH = '3c651a38ea79504029c71b382c9c17da' RANDOMIZERBASEHASH = '08f762abe1d3687e07eb584ef962b9c0'
class JsonRom(object): class JsonRom(object):

Binary file not shown.

View File

@@ -835,9 +835,10 @@ pot_items = {
PotItem.OneRupee: 'Rupee (1)', PotItem.OneRupee: 'Rupee (1)',
PotItem.FiveRupees: 'Rupees (5)', PotItem.FiveRupees: 'Rupees (5)',
PotItem.Heart: 'Small Heart', PotItem.Heart: 'Small Heart',
PotItem.BigMagic: 'Big Magic', # fast fill PotItem.BigMagic: 'Big Magic',
PotItem.SmallMagic: 'Small Magic', PotItem.SmallMagic: 'Small Magic',
PotItem.Chicken: 'Chicken' # fast fill PotItem.Chicken: 'Chicken',
PotItem.Fairy: 'Fairy'
} }
valid_pot_items = {y: x for x, y in pot_items.items()} valid_pot_items = {y: x for x, y in pot_items.items()}