From 8f2abee841a01427cea2268d89fb0c0bed86f963 Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 26 Aug 2023 13:13:37 +0200 Subject: Close recipe list after clicking on highlighter --- .../kotlin/moe/nea/firmament/recipes/SBRecipe.kt | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/main/kotlin/moe/nea/firmament/recipes/SBRecipe.kt (limited to 'src/main/kotlin/moe/nea/firmament/recipes/SBRecipe.kt') diff --git a/src/main/kotlin/moe/nea/firmament/recipes/SBRecipe.kt b/src/main/kotlin/moe/nea/firmament/recipes/SBRecipe.kt deleted file mode 100644 index 7527783..0000000 --- a/src/main/kotlin/moe/nea/firmament/recipes/SBRecipe.kt +++ /dev/null @@ -1,30 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2023 Linnea Gräf - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -package moe.nea.firmament.recipes - -import io.github.moulberry.repo.data.NEURecipe -import me.shedaniel.rei.api.common.display.Display -import me.shedaniel.rei.api.common.entry.EntryIngredient -import moe.nea.firmament.rei.SBItemEntryDefinition -import moe.nea.firmament.util.SkyblockId - -abstract class SBRecipe() : Display { - abstract val neuRecipe: NEURecipe - override fun getInputEntries(): List { - return neuRecipe.allInputs.map { - val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId)) - EntryIngredient.of(entryStack) - } - } - - override fun getOutputEntries(): List { - return neuRecipe.allOutputs.map { - val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId)) - EntryIngredient.of(entryStack) - } - } -} -- cgit