mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-30 23:05:03 +01:00
fix: cactus milling getting disabled when quark is loaded (#7215)
This commit is contained in:
parent
c1a7a18968
commit
67085963d0
3 changed files with 3 additions and 13 deletions
|
@ -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
|
||||
|
|
|
@ -1,14 +1,5 @@
|
|||
{
|
||||
"type": "create:milling",
|
||||
"conditions": [
|
||||
{
|
||||
"type": "forge:not",
|
||||
"value": {
|
||||
"type": "forge:mod_loaded",
|
||||
"modid": "quark"
|
||||
}
|
||||
}
|
||||
],
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:cactus"
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue