From 072f5c68b76e403844cfa1d3be5192ae5b40a27d Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Wed, 16 Oct 2024 22:08:29 +0200 Subject: [PATCH] Remove TODO on Ring of Growth recipe Since it works --- .../9cf54cdf67e16111ec482a2a3b607e8fd75a4246 | 3 ++- .../recipe/ring_of_growth.json | 24 +++++++++++++++++++ .../data/ItemRecipeGenerator.java | 4 ++-- 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 src/generated/resources/data/actuallyadditions/recipe/ring_of_growth.json diff --git a/src/generated/resources/.cache/9cf54cdf67e16111ec482a2a3b607e8fd75a4246 b/src/generated/resources/.cache/9cf54cdf67e16111ec482a2a3b607e8fd75a4246 index b49c54630..a7a44f50b 100644 --- a/src/generated/resources/.cache/9cf54cdf67e16111ec482a2a3b607e8fd75a4246 +++ b/src/generated/resources/.cache/9cf54cdf67e16111ec482a2a3b607e8fd75a4246 @@ -1,4 +1,4 @@ -// 1.21.1 2024-08-11T19:30:01.8188184 Item Recipes +// 1.21.1 2024-10-16T22:05:14.5301488 Item Recipes 14bd5bc2ee3e84b6f3a3181c0e0efd40df5f1d84 data/actuallyadditions/recipe/advanced_coil.json 955aad6c1def123a6adbaeabb13faa6eedce847f data/actuallyadditions/recipe/advanced_leaf_blower.json 97e7ba64f5054b030f4e49615dc4212a28ca9be1 data/actuallyadditions/recipe/basic_coil.json @@ -109,6 +109,7 @@ f7b4a51bf6bcaee860b68bfd2dc40a6b0bfff6bc data/actuallyadditions/recipe/rice_pape 73e49fa3d60186037c58569eee42fc6dbff0e55c data/actuallyadditions/recipe/rice_slime.json f5cbc0efed1684fa5201cbd023d90fdec89aa0b3 data/actuallyadditions/recipe/rice_slime_potion.json be20b48da77573463f63c119b542fde5d4c14843 data/actuallyadditions/recipe/ring.json +b5bcd0457a68e28d37312f1a1e94a106d3b6f038 data/actuallyadditions/recipe/ring_of_growth.json 8e0ac0d696ff3ecd1ef43122707b8f131bba3fbf data/actuallyadditions/recipe/ring_of_magnetizing.json f31206c1d67ddc93e41d13f24d54e8d6b5913348 data/actuallyadditions/recipe/single_battery.json 9504d2a8e3cb536cf865e8385a013743a0d615d0 data/actuallyadditions/recipe/stone_aiot.json diff --git a/src/generated/resources/data/actuallyadditions/recipe/ring_of_growth.json b/src/generated/resources/data/actuallyadditions/recipe/ring_of_growth.json new file mode 100644 index 000000000..02f6dbcac --- /dev/null +++ b/src/generated/resources/data/actuallyadditions/recipe/ring_of_growth.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": { + "item": "actuallyadditions:empowered_enori_crystal" + }, + "O": { + "item": "actuallyadditions:ring" + }, + "S": { + "tag": "c:seeds" + } + }, + "pattern": [ + "SIS", + "IOI", + "SIS" + ], + "result": { + "count": 1, + "id": "actuallyadditions:ring_of_growth" + } +} \ No newline at end of file diff --git a/src/main/java/de/ellpeck/actuallyadditions/data/ItemRecipeGenerator.java b/src/main/java/de/ellpeck/actuallyadditions/data/ItemRecipeGenerator.java index 3f49aa0b6..c4a8307d0 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/data/ItemRecipeGenerator.java +++ b/src/main/java/de/ellpeck/actuallyadditions/data/ItemRecipeGenerator.java @@ -453,12 +453,12 @@ public class ItemRecipeGenerator extends RecipeProvider { .save(recipeOutput); //Growth Ring -/* Recipe.shaped(ActuallyItems.RING_OF_GROWTH.get()) + Recipe.shaped(ActuallyItems.RING_OF_GROWTH.get()) .pattern("SIS", "IOI", "SIS") .define('S', Tags.Items.SEEDS) .define('I', ActuallyItems.EMPOWERED_ENORI_CRYSTAL.get()) .define('O', ActuallyItems.RING.get()) - .save(recipeOutput);*/ //TODO not done yet + .save(recipeOutput); Recipe.shapeless(ActuallyItems.CRAFTER_ON_A_STICK.get()).requires(Items.CRAFTING_TABLE).requires(ItemTags.SIGNS).save(recipeOutput);