diff --git a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 index 7cbe41f31..bc6c8ed80 100644 --- a/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 +++ b/src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034 @@ -1,4 +1,4 @@ -// 1.20.1 2024-10-09T12:24:59.1833995 Create's Processing Recipes +// 1.20.1 2024-12-15T23:26:23.3573034 Create's Processing Recipes 3c94326fb730f68c1e44fe1e2ef09c9db6ffd92b data/create/recipes/compacting/andesite_from_flint.json 8d3d5b31f3601b9f681ff710e0545a483a1494c6 data/create/recipes/compacting/blaze_cake.json 8bd7f4e3a686ab520b2d55594d2018d0e9a50c91 data/create/recipes/compacting/chocolate.json @@ -764,7 +764,7 @@ d480b1b4c48440c6d6cb775321e95be7ea171aa5 data/create/recipes/milling/andesite.js a3b4a9eb3970eea745dff83c2d5fbab403ed481f data/create/recipes/milling/blue_orchid.json 720ff9753bb30e874483fc850c3cbc8bfa973224 data/create/recipes/milling/bone.json e84433fe6ec772c212d20109268fa74ceb8fa3ab data/create/recipes/milling/bone_meal.json -08771e9c43212ed8a378a7f4b2e5147ebe37fe0b data/create/recipes/milling/cactus.json +77b571f6ee4e8775d87077accdce4a23fb6a0c56 data/create/recipes/milling/cactus.json d6073794b0be05fb52faf2d78d0daeb6ce3beab5 data/create/recipes/milling/calcite.json 5b6ccdbc1bf1dcc3fc3fca94ff1fa46c17f46622 data/create/recipes/milling/charcoal.json 6323f36ea7a1a46d0999dfe24e4fa86d677e319d data/create/recipes/milling/clay.json diff --git a/src/generated/resources/data/create/recipes/milling/cactus.json b/src/generated/resources/data/create/recipes/milling/cactus.json index 091fe39bc..7c4cfdf92 100644 --- a/src/generated/resources/data/create/recipes/milling/cactus.json +++ b/src/generated/resources/data/create/recipes/milling/cactus.json @@ -1,14 +1,5 @@ { "type": "create:milling", - "conditions": [ - { - "type": "forge:not", - "value": { - "type": "forge:mod_loaded", - "modid": "quark" - } - } - ], "ingredients": [ { "item": "minecraft:cactus" diff --git a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java index 6b28a22d5..5dd9aa72b 100644 --- a/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java +++ b/src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java @@ -62,8 +62,7 @@ public class MillingRecipeGen extends ProcessingRecipeGen { CACTUS = create(() -> Blocks.CACTUS, b -> b.duration(50) .output(Items.GREEN_DYE, 2) - .output(.1f, Items.GREEN_DYE, 1) - .whenModMissing("quark")), + .output(.1f, Items.GREEN_DYE, 1)), SEA_PICKLE = create(() -> Blocks.SEA_PICKLE, b -> b.duration(50) .output(Items.LIME_DYE, 2)