Orphis / alttp_entrance_randomizer_tracker

Entrance randomizer tracker for ALttP
Other
13 stars 9 forks source link

Library access #4

Open thebluefish opened 6 years ago

thebluefish commented 6 years ago

I noticed that Library is always available without the boots.

Library: {
    count: 1,
    region: 'Kakariko',
    tag: 'lw',
    entrance: {
      Library: {
        x: '15.75%',
        y: '65.38%',
        state() {
          return 'available';
        },
      },
    },
  },

At least for Items, I believe we should be using:

return items.has('boots') ? 'available' : '';

As I'm relatively green, I'm hesitant on opening a PR before better understanding the current decision.

Orphis commented 6 years ago

I guess it should be yellow or require boots to be available in item shuffle mode. Can you make a pull request?