diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-02 21:44:32 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-02 21:44:32 +0100 |
| commit | a193bdf1bf00100f0b250577abd371de78d75fc9 (patch) | |
| tree | f305fe32f8591e0a8b399ac964a4eaa056bc4e95 | |
| parent | 3f64188672b88b1820ccbf87778cab9ab4493c3d (diff) | |
| download | SkyHanni-a193bdf1bf00100f0b250577abd371de78d75fc9.tar.gz SkyHanni-a193bdf1bf00100f0b250577abd371de78d75fc9.tar.bz2 SkyHanni-a193bdf1bf00100f0b250577abd371de78d75fc9.zip | |
Add island requirements
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt index f02da736e..f3d29efcb 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/BingoNextStepHelper.kt @@ -281,7 +281,7 @@ class BingoNextStepHelper { ).apply { createItemIslandRequirement(itemName, this) } redstoneForThys requires IslandType.DEEP_CAVERNS.getStep() IslandType.DWARVEN_MINES.getStep() requires redstoneForThys - IslandType.DWARVEN_MINES.getStep() requires SkillLevelStep("Mining", 12) + IslandType.DWARVEN_MINES.getStep() requires SkillLevelStep("Mining", 12).also { it requires IslandType.THE_FARMING_ISLANDS.getStep() } IslandType.CRYSTAL_HOLLOWS.getStep() requires IslandType.DWARVEN_MINES.getStep() // TODO add skyblock level requirement @@ -294,7 +294,7 @@ class BingoNextStepHelper { IslandType.DWARVEN_MINES.getStep().also { finalSteps.add(it) } ChatMessageStep("Get Ender Armor").also { finalSteps.add(it) } requires IslandType.THE_END.getStep() - IslandType.THE_END.getStep() requires SkillLevelStep("Combat", 12) + IslandType.THE_END.getStep() requires SkillLevelStep("Combat", 12).also { it requires IslandType.DEEP_CAVERNS.getStep() } // enchantedCharcoal(7) // compactor(7) |
