Skip to content

Commit

Permalink
Change recipe type to disk_assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfieboy09 committed Oct 21, 2024
1 parent 7661a29 commit 963a428
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public class QSRecipes {
public static final DeferredRegister<RecipeSerializer<?>> SERALIZERS = DeferredRegister.create(Registries.RECIPE_SERIALIZER, QuantiumizedStorage.MOD_ID);
public static final DeferredRegister<RecipeType<?>> TYPES = DeferredRegister.create(Registries.RECIPE_TYPE, QuantiumizedStorage.MOD_ID);

public static final DeferredHolder<RecipeType<?>, RecipeType<DiskAssemblerRecipe>> DISK_ASSEMBLER_TYPE = registerRecipeType("disk_assembler");
public static final DeferredHolder<RecipeSerializer<?>, DiskAssemblerRecipe.Serializer> DISK_ASSEMBLER_SERIALIZER = SERALIZERS.register("disk_assembler", DiskAssemblerRecipe.Serializer::new);
public static final DeferredHolder<RecipeType<?>, RecipeType<DiskAssemblerRecipe>> DISK_ASSEMBLER_TYPE = registerRecipeType("disk_assembly");
public static final DeferredHolder<RecipeSerializer<?>, DiskAssemblerRecipe.Serializer> DISK_ASSEMBLER_SERIALIZER = SERALIZERS.register("disk_assembly", DiskAssemblerRecipe.Serializer::new);

public static void init(IEventBus bus) {
SERALIZERS.register(bus);
Expand Down

0 comments on commit 963a428

Please sign in to comment.