Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ private static void generalRemovals(Consumer<ResourceLocation> registry) {
registry.accept(new ResourceLocation("minecraft:soul_torch"));
registry.accept(new ResourceLocation("minecraft:soul_lantern"));
registry.accept(new ResourceLocation("minecraft:leather_horse_armor"));

// remove vanilla dye recipes to gregify
registry.accept(new ResourceLocation("minecraft:white_dye"));
}

/**
Expand Down Expand Up @@ -291,7 +288,9 @@ private static void hardDyeRecipes(Consumer<ResourceLocation> registry) {
registry.accept(new ResourceLocation(String.format("minecraft:dye_%s_wool", colorMaterial.getName())));
registry.accept(new ResourceLocation(String.format("minecraft:dye_%s_carpet", colorMaterial.getName())));
registry.accept(new ResourceLocation(String.format("minecraft:dye_%s_bed", colorMaterial.getName())));
registry.accept(new ResourceLocation("minecraft:black_dye"));

registry.accept(new ResourceLocation("white_dye"));
registry.accept(new ResourceLocation("black_dye"));
registry.accept(new ResourceLocation("black_dye_from_wither_rose"));
registry.accept(new ResourceLocation("blue_dye"));
registry.accept(new ResourceLocation("white_dye_from_lily_of_the_valley"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1372,11 +1372,13 @@ private static void dyeRecipes(Consumer<FinishedRecipe> provider) {
.inputItems(new ItemStack(Items.BONE_MEAL))
.outputItems(new ItemStack(Items.WHITE_DYE, 1))
.save(provider);
EXTRACTOR_RECIPES.recipeBuilder("lapis_dye")

EXTRACTOR_RECIPES.recipeBuilder("blue_dye")
.inputItems(new ItemStack(Items.LAPIS_LAZULI))
.outputItems(new ItemStack(Items.BLUE_DYE))
.save(provider);
EXTRACTOR_RECIPES.recipeBuilder("ink_dye")

EXTRACTOR_RECIPES.recipeBuilder("black_dye")
.inputItems(new ItemStack(Items.INK_SAC))
.outputItems(new ItemStack(Items.BLACK_DYE))
.save(provider);
Expand Down
Loading