Skip to content

Commit

Permalink
work with 1.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
viciscat committed Nov 30, 2024
1 parent 8221d1c commit b8dfb40
Show file tree
Hide file tree
Showing 12 changed files with 97 additions and 758 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
import de.hysky.skyblocker.skyblock.itemlist.recipes.SkyblockRecipe;
import me.shedaniel.rei.api.common.category.CategoryIdentifier;
import me.shedaniel.rei.api.common.display.Display;
import me.shedaniel.rei.api.common.display.DisplaySerializer;
import me.shedaniel.rei.api.common.entry.EntryIngredient;
import me.shedaniel.rei.api.common.util.EntryStacks;
import net.minecraft.util.Identifier;
import org.jetbrains.annotations.Nullable;

import java.util.List;
import java.util.Optional;

/**
* Skyblock Crafting Recipe display class for REI
Expand Down Expand Up @@ -40,4 +43,14 @@ public SkyblockRecipe getRecipe() {
public CategoryIdentifier<?> getCategoryIdentifier() {
return CategoryIdentifier.of(category);
}

@Override
public Optional<Identifier> getDisplayLocation() {
return Optional.empty();
}

@Override
public @Nullable DisplaySerializer<? extends Display> getSerializer() {
return null;
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit b8dfb40

Please sign in to comment.