diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-03 15:51:09 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-03 15:51:09 +0100 |
| commit | ea17ab2487e6ec6b0efd49a5eaaa95dd3d4d950d (patch) | |
| tree | 382e5fec8f1bc96d25089d32ba26eefcc9ad5138 | |
| parent | c94f3c14f00a7ee12bb089fea1942a5a123b916b (diff) | |
| download | SkyHanni-ea17ab2487e6ec6b0efd49a5eaaa95dd3d4d950d.tar.gz SkyHanni-ea17ab2487e6ec6b0efd49a5eaaa95dd3d4d950d.tar.bz2 SkyHanni-ea17ab2487e6ec6b0efd49a5eaaa95dd3d4d950d.zip | |
Fixed bug with minion skins and minion craft helper in bingo.
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt index b52db6139..da72f3e78 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt @@ -50,7 +50,7 @@ class MinionCraftHelper { val mainInventory = Minecraft.getMinecraft()?.thePlayer?.inventory?.mainInventory ?: return hasMinionInInventory = mainInventory .mapNotNull { it?.name?.removeColor() } - .any { it.contains(" Minion ") } + .any { it.contains(" Minion ") && !it.contains(" Minion Skin") } } if (tick % (60 * 2) == 0) { |
