From 6893694a62c5bc7856c119dfb09d6a521e273828 Mon Sep 17 00:00:00 2001 From: Luca Argolo Date: Sun, 9 Oct 2022 15:34:57 -0300 Subject: [PATCH] Merge pull request #176 from Luligabi1/1.19 Ignore VacuumHopperRecipe on Recipe Book --- .../github/lucaargolo/kibe/recipes/vacuum/VacuumHopperRecipe.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/io/github/lucaargolo/kibe/recipes/vacuum/VacuumHopperRecipe.kt b/src/main/kotlin/io/github/lucaargolo/kibe/recipes/vacuum/VacuumHopperRecipe.kt index 803215d3..5642cd1b 100644 --- a/src/main/kotlin/io/github/lucaargolo/kibe/recipes/vacuum/VacuumHopperRecipe.kt +++ b/src/main/kotlin/io/github/lucaargolo/kibe/recipes/vacuum/VacuumHopperRecipe.kt @@ -49,4 +49,6 @@ class VacuumHopperRecipe(private val id: Identifier, val ticks: Int, val xpInput override fun getIngredients(): DefaultedList = DefaultedList.ofSize(1, input) + override fun isIgnoredInRecipeBook(): Boolean = true + } \ No newline at end of file