summaryrefslogtreecommitdiff
path: root/src/com/sneed/pkrandom/constants
diff options
context:
space:
mode:
authortom-overton <tom.overton@outlook.com>2022-05-31 01:52:05 -0700
committerrafa_99 <raroma09@gmail.com>2022-05-31 12:34:57 +0100
commit5047d3453c0dfafe9fd1ce90ede935413c6d6a68 (patch)
tree0935378ab128e631216d3df5ba62099ed4b7b484 /src/com/sneed/pkrandom/constants
parentbfceb47a94344a43640cd0473cc465409aa4b5ac (diff)
Gen 7: Consider Flutes to be bad items
Diffstat (limited to 'src/com/sneed/pkrandom/constants')
-rw-r--r--src/com/sneed/pkrandom/constants/Gen7Constants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/sneed/pkrandom/constants/Gen7Constants.java b/src/com/sneed/pkrandom/constants/Gen7Constants.java
index 3f92435..e549624 100644
--- a/src/com/sneed/pkrandom/constants/Gen7Constants.java
+++ b/src/com/sneed/pkrandom/constants/Gen7Constants.java
@@ -1023,6 +1023,7 @@ public class Gen7Constants {
nonBadItems.banRange(Items.fightingMemory,17); // Memories
nonBadItems.banRange(Items.relicCopper,7); // relic items
nonBadItems.banSingles(Items.shoalSalt, Items.shoalShell); // Shoal items; have no purpose and sell for $10.
+ nonBadItems.banRange(Items.blueFlute, 5); // Flutes; have no purpose and sell for $10.
regularShopItemsSM = new ArrayList<>();
@@ -1042,7 +1043,6 @@ public class Gen7Constants {
opShopItems.add(Items.berryJuice);
opShopItems.add(Items.rareCandy);
opShopItems.add(Items.oldGateau);
- opShopItems.addAll(IntStream.rangeClosed(Items.blueFlute, Items.shoalShell).boxed().collect(Collectors.toList()));
opShopItems.addAll(IntStream.rangeClosed(Items.tinyMushroom, Items.nugget).boxed().collect(Collectors.toList()));
opShopItems.add(Items.rareBone);
opShopItems.addAll(IntStream.rangeClosed(Items.lansatBerry, Items.rowapBerry).boxed().collect(Collectors.toList()));