Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Oct 7, 2024
1 parent 199f399 commit 3e87d65
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import mezz.jei.api.recipe.RecipeType;
import mezz.jei.api.recipe.category.IRecipeCategory;
import mezz.jei.api.runtime.IRecipesGui;
import net.minecraft.client.gui.screens.Screen;

import java.util.List;
import java.util.Optional;
Expand Down Expand Up @@ -35,4 +36,9 @@ public <T> void showRecipes(IRecipeCategory<T> recipeCategory, List<T> recipes,
public <T> Optional<T> getIngredientUnderMouse(IIngredientType<T> ingredientType) {
return Optional.empty();
}

@Override
public Optional<Screen> getParentScreen() {
return Optional.empty();
}
}

0 comments on commit 3e87d65

Please sign in to comment.