Open thebluefish opened 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.
I guess it should be yellow or require boots to be available in item shuffle mode. Can you make a pull request?
I noticed that Library is always available without the boots.
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.