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

View File

@@ -835,9 +835,10 @@ pot_items = {
PotItem.OneRupee: 'Rupee (1)',
PotItem.FiveRupees: 'Rupees (5)',
PotItem.Heart: 'Small Heart',
PotItem.BigMagic: 'Big Magic', # fast fill
PotItem.BigMagic: 'Big 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()}