Skip to content

Commit 2533d69

Browse files
committed
To clay or to not clay
- Fix clay crushing recipe not always giving 4 clay balls
1 parent b91757a commit 2533d69

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// 1.21.1 2025-11-02T10:48:42.5816036 Create's Processing Recipes
1+
// 1.21.1 2025-11-17T18:16:14.466885779 Create's Processing Recipes
22
cb988d3be6b4a28e4d13dc73d61eed3670520e8e data/create/recipe/compacting/andesite_from_flint.json
33
d97f4e06363879d033b2151995a5d4f19ad7ef3a data/create/recipe/compacting/blaze_cake.json
44
7879a7ba9019a2938363449d3a0e13013a4ad606 data/create/recipe/compacting/chocolate.json
@@ -468,7 +468,7 @@ b0eb49032833950997ca0d5ae74c205e243b537e data/create/recipe/milling/bone.json
468468
54a0d4d045884f9780441fa043436fa2964dcb6e data/create/recipe/milling/cactus.json
469469
cdb1e22a2c3fe61118596b1dda9b31050eb50921 data/create/recipe/milling/calcite.json
470470
c1cc76218d3258bf722ce31994497d1d4669676a data/create/recipe/milling/charcoal.json
471-
b2410791a170ed7f7f9b0864866000d07735fab5 data/create/recipe/milling/clay.json
471+
c693e0392307195893d0fc9556c1ddcd65263f77 data/create/recipe/milling/clay.json
472472
327a07e241b4d48414e3568a461b27104996828e data/create/recipe/milling/coal.json
473473
a91ebb9516f2267b395d872ba802bfcc55b88156 data/create/recipe/milling/cobblestone.json
474474
c5fbc261de0ee7eb24ba7d52141d9604bb6dd45c data/create/recipe/milling/cocoa_beans.json

src/generated/resources/.cache/eaed56ca9d9781c7626be345dd9f2c9a1fad638e

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// 1.21.1 2025-11-02T10:48:42.643255489 Create's Generated Registry Entries
1+
// 1.21.1 2025-11-17T18:16:14.479933427 Create's Generated Registry Entries
22
abb9dd2c98388abb430343d4ac02d460e5edc086 data/create/create/potato_projectile/type/apple.json
33
1a20cb4e64dc07918a28fbccc73102bca3560f16 data/create/create/potato_projectile/type/baked_potato.json
44
8450576952f7723d22250da6f554dd0fda4e9fce data/create/create/potato_projectile/type/beetroot.json
@@ -19,7 +19,7 @@ c6234751ccad5111857b0ae9e297e42f529ad32a data/create/create/potato_projectile/ty
1919
352402ba2fff3f23af178d15d61b0ba0a151097a data/create/create/potato_projectile/type/melon_slice.json
2020
cbfd3028ad878bddbdaeb0eec0cd5a1c50d4c901 data/create/create/potato_projectile/type/poison_potato.json
2121
38116c664c63ca9da0ea043edc16a3ce9264c706 data/create/create/potato_projectile/type/potato.json
22-
d9658cdde7b85160ec59f6c66f76454f90541355 data/create/create/potato_projectile/type/pufferfish.json
22+
791d9790beb27e1ade44aec77e0a8aa7390ea93f data/create/create/potato_projectile/type/pufferfish.json
2323
63e2df2c83982204bc92479b1df26561922e795d data/create/create/potato_projectile/type/pumpkin_block.json
2424
7d58a0671c55e40cdb728c60152665c89209fb91 data/create/create/potato_projectile/type/pumpkin_pie.json
2525
30bf0b35aeff136251d3bfe2af04fd89ccf953de data/create/create/potato_projectile/type/suspicious_stew.json

src/generated/resources/data/create/create/potato_projectile/type/pufferfish.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"duration": 1200,
1313
"id": "minecraft:poison",
1414
"neoforge:cures": [
15-
"honey",
1615
"milk",
16+
"honey",
1717
"protected_by_totem"
1818
],
1919
"show_icon": true

src/generated/resources/data/create/recipe/milling/clay.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
"processing_time": 50,
99
"results": [
1010
{
11-
"count": 3,
12-
"id": "minecraft:clay_ball"
13-
},
14-
{
15-
"chance": 0.5,
11+
"count": 4,
1612
"id": "minecraft:clay_ball"
1713
}
1814
]

src/main/java/com/simibubi/create/foundation/data/recipe/CreateMillingRecipeGen.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ public final class CreateMillingRecipeGen extends MillingRecipeGen {
3737
.output(Items.STRING)),
3838

3939
CLAY = create(() -> Blocks.CLAY, b -> b.duration(50)
40-
.output(Items.CLAY_BALL, 3)
41-
.output(.5f, Items.CLAY_BALL)),
40+
.output(Items.CLAY_BALL, 4)),
4241

4342
CALCITE = create(() -> Items.CALCITE, b -> b.duration(250)
4443
.output(.75f, Items.BONE_MEAL, 1)),

0 commit comments

Comments
 (0)