aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/bingo
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-26 15:46:54 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-26 15:46:54 +0100
commita5540841c951f2f694cf48f8dd093f69e9d36c44 (patch)
treebfe652984b93789a98e699793baf16776acb9fdc /src/main/java/at/hannibal2/skyhanni/features/bingo
parent69b7a4688ed84b89b21545ebb382cf8a4f57307c (diff)
downloadskyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.tar.gz
skyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.tar.bz2
skyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.zip
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/bingo')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt3
1 files changed, 1 insertions, 2 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 9dab12e79..671b42848 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/MinionCraftHelper.kt
@@ -18,7 +18,6 @@ import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimalIfNecessary
import at.hannibal2.skyhanni.utils.RenderUtils.renderStrings
import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
-import io.github.moulberry.notenoughupdates.NotEnoughUpdates
import io.github.moulberry.notenoughupdates.recipes.CraftingRecipe
import net.minecraft.client.Minecraft
import net.minecraft.item.ItemStack
@@ -145,7 +144,7 @@ class MinionCraftHelper {
allIngredients.clear()
- for (internalId in NotEnoughUpdates.INSTANCE.manager.itemInformation.keys) {
+ for (internalId in NEUItems.allNeuRepoItems().keys) {
val internalName = internalId.asInternalName()
if (internalName.endsWith("_GENERATOR_1")) {
if (internalName == "REVENANT_GENERATOR_1".asInternalName() ||