diff --git a/src/generated/resources/.cache/3425a48f50a5cfd73d65d933e25ea9828512dab8 b/src/generated/resources/.cache/3425a48f50a5cfd73d65d933e25ea9828512dab8 index a71fc295b..41bac5378 100644 --- a/src/generated/resources/.cache/3425a48f50a5cfd73d65d933e25ea9828512dab8 +++ b/src/generated/resources/.cache/3425a48f50a5cfd73d65d933e25ea9828512dab8 @@ -1,8 +1,8 @@ -// 1.21.1 2024-08-11T19:30:01.8188184 Empowering Recipes +// 1.21.1 2024-10-17T18:39:09.6349717 Empowering Recipes cc9c78901a2ac70dc5efa029684edac7376c68e2 data/actuallyadditions/recipe/empowering/diamatine.json 0ee7498f9720da718f2904bfb2826f48592629e7 data/actuallyadditions/recipe/empowering/diamatine_block.json -13ba258b2c645ab14d879cc923d452080e099932 data/actuallyadditions/recipe/empowering/emeradic.json -65fce5dc254d68e83c66a6b80ae37cb9acd71d3d data/actuallyadditions/recipe/empowering/emeradic_block.json +09c7ef6ae8c1690e9b0b3bf323951005335a172f data/actuallyadditions/recipe/empowering/emeradic.json +f79081a34b05b6e44b9b543b0e1710ef57f65314 data/actuallyadditions/recipe/empowering/emeradic_block.json ada12731cdb55ceea84eaca71b71c3e484d4399d data/actuallyadditions/recipe/empowering/empowered_canola.json 439b7d2abae8901e62dc8e39d0a539fac5db01cf data/actuallyadditions/recipe/empowering/enori.json f26b6d17245059f52fbdb3a2fb2f0d2cc94a416b data/actuallyadditions/recipe/empowering/enori_block.json diff --git a/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic.json b/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic.json index 4dcddbac4..ae8702e88 100644 --- a/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic.json +++ b/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic.json @@ -10,7 +10,7 @@ "tag": "c:dyes/lime" }, { - "item": "minecraft:tall_grass" + "item": "minecraft:short_grass" }, { "tag": "minecraft:saplings" diff --git a/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic_block.json b/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic_block.json index a99f83f55..cde0f4dee 100644 --- a/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic_block.json +++ b/src/generated/resources/data/actuallyadditions/recipe/empowering/emeradic_block.json @@ -10,7 +10,7 @@ "tag": "c:dyes/lime" }, { - "item": "minecraft:tall_grass" + "item": "minecraft:short_grass" }, { "tag": "minecraft:saplings" diff --git a/src/main/java/de/ellpeck/actuallyadditions/data/EmpoweringRecipeGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/data/EmpoweringRecipeGenerator.java index 7a5d940ea..52778617d 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/data/EmpoweringRecipeGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/data/EmpoweringRecipeGenerator.java @@ -95,12 +95,12 @@ public class EmpoweringRecipeGenerator extends RecipeProvider { EmpoweringBuilder.builder(ActuallyItems.EMPOWERED_EMERADIC_CRYSTAL.get(), ActuallyItems.EMERADIC_CRYSTAL.get(), 5000, 50, Crystals.EMERALD.conversionColorParticles) .addModifier(Tags.Items.DYES_LIME) - .addModifier(Items.TALL_GRASS) + .addModifier(Items.SHORT_GRASS) .addModifier(ItemTags.SAPLINGS) .addModifier(Tags.Items.SLIMEBALLS).save(recipeOutput, "emeradic"); EmpoweringBuilder.builder(ActuallyBlocks.EMPOWERED_EMERADIC_CRYSTAL.get(), ActuallyBlocks.EMERADIC_CRYSTAL.get(), 50000, 500, Crystals.EMERALD.conversionColorParticles) .addModifier(Tags.Items.DYES_LIME) - .addModifier(Items.TALL_GRASS) + .addModifier(Items.SHORT_GRASS) .addModifier(ItemTags.SAPLINGS) .addModifier(Tags.Items.SLIMEBALLS).save(recipeOutput, "emeradic_block");