Skip to content

Commit

Permalink
Exclude seals from removal when seal shuffle is off
Browse files Browse the repository at this point in the history
  • Loading branch information
worsety committed Apr 30, 2021
1 parent 2a09f0f commit 64d180f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/lmr/randomizer/DataFromFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ public static List<String> getRandomRemovableItems() {
|| "Isis' Pendant".equals(itemName)) {
continue; // Things that should never be removed.
}
if(!Settings.isRandomizeSeals() && itemName.endsWith(" Seal")) {
continue;
}
if(!Settings.isFeatherlessMode() && "Feather".equals(itemName)) {
continue;
}
Expand Down

0 comments on commit 64d180f

Please sign in to comment.