File tree 6 files changed +14
-3
lines changed
create/recipes/sequenced_assembly
main/java/com/simibubi/create
6 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -5457,7 +5457,7 @@ b27348bd726e0d99d20104f2a66572bee8f82520 data/create/recipes/scorchia_from_stone
5457
5457
afefabc59a37e792b78f4a6a2d437c100a64139d data/create/recipes/scoria_from_stone_types_scoria_stonecutting.json
5458
5458
d6e16599de7424513e1457b07acb6370815d2bd7 data/create/recipes/scoria_pillar_from_stone_types_scoria_stonecutting.json
5459
5459
2f660f8cc0a9740ba7e7992d3d51f04b67d23871 data/create/recipes/sequenced_assembly/precision_mechanism.json
5460
- de17d82738a5e0242eb3109fd2a75337160fc843 data/create/recipes/sequenced_assembly/sturdy_sheet.json
5460
+ b98fa962bdd63929416cb50b4df1130cf8bf067b data/create/recipes/sequenced_assembly/sturdy_sheet.json
5461
5461
7610e0be633b1ade7ae39db3dbbfe1bd14aa333a data/create/recipes/sequenced_assembly/track.json
5462
5462
5e7648d55555c263539a2696b8d1f8d352a71dc9 data/create/recipes/small_andesite_brick_slab.json
5463
5463
4734a4ed04708b841f530ea95f23214e3b5d0ea4 data/create/recipes/small_andesite_brick_slab_from_stone_types_andesite_stonecutting.json
@@ -5787,6 +5787,7 @@ d6a4e4fe1204b718010543a28a9b9ec4e0977bd7 data/forge/tags/fluids/tea.json
5787
5787
5af3164b14c92d2d6e235b5d4eebd93cbee37c0a data/forge/tags/items/buckets/honey.json
5788
5788
2f7cf5a2d485f25d451da9771ed466591cfa5204 data/forge/tags/items/dough.json
5789
5789
2f7cf5a2d485f25d451da9771ed466591cfa5204 data/forge/tags/items/dough/wheat.json
5790
+ a3ea70dc4ecbf3beeded920313e2770dd4a2dd6a data/forge/tags/items/dusts/obsidian.json
5790
5791
25078dad07e8f75134a98c2dd0f0511c55146bd5 data/forge/tags/items/flour.json
5791
5792
25078dad07e8f75134a98c2dd0f0511c55146bd5 data/forge/tags/items/flour/wheat.json
5792
5793
16bcb8fcbe9170c2c11f1ca8d99d8b36cd812bbd data/forge/tags/items/glass/colorless.json
Original file line number Diff line number Diff line change 1
1
{
2
2
"type" : " create:sequenced_assembly" ,
3
3
"ingredient" : {
4
- "item " : " create:powdered_obsidian "
4
+ "tag " : " forge:dusts/obsidian "
5
5
},
6
6
"transitionalItem" : {
7
7
"item" : " create:unprocessed_obsidian_sheet"
Original file line number Diff line number Diff line change
1
+ {
2
+ "replace" : false ,
3
+ "values" : [
4
+ " create:powdered_obsidian"
5
+ ]
6
+ }
Original file line number Diff line number Diff line change @@ -186,6 +186,7 @@ public enum AllItemTags {
186
186
STRIPPED_LOGS (FORGE ),
187
187
STRIPPED_WOOD (FORGE ),
188
188
PLATES (FORGE ),
189
+ OBSIDIAN_DUST (FORGE ,"dusts/obsidian" ),
189
190
WRENCH (FORGE , "tools/wrench" ),
190
191
191
192
ALLURITE (MOD ,"stone_types/galosphere/allurite" ),
Original file line number Diff line number Diff line change 5
5
6
6
import com .simibubi .create .AllBlocks ;
7
7
import com .simibubi .create .AllItems ;
8
+ import com .simibubi .create .AllTags ;
8
9
import com .simibubi .create .AllTags .AllItemTags ;
9
10
import com .simibubi .create .Create ;
10
11
import com .simibubi .create .content .fluids .transfer .FillingRecipe ;
@@ -51,7 +52,7 @@ public class SequencedAssemblyRecipeGen extends CreateRecipeProvider {
51
52
.addStep (DeployerApplicationRecipe ::new , rb -> rb .require (I .largeCog ()))
52
53
.addStep (DeployerApplicationRecipe ::new , rb -> rb .require (I .ironNugget ()))),
53
54
54
- REINFORCED_SHEET = create ("sturdy_sheet" , b -> b .require (AllItems . POWDERED_OBSIDIAN . get () )
55
+ REINFORCED_SHEET = create ("sturdy_sheet" , b -> b .require (AllItemTags . OBSIDIAN_DUST . tag )
55
56
.transitionTo (AllItems .INCOMPLETE_REINFORCED_SHEET .get ())
56
57
.addOutput (AllItems .STURDY_SHEET .get (), 1 )
57
58
.loops (1 )
Original file line number Diff line number Diff line change @@ -146,6 +146,8 @@ private static void genItemTags(RegistrateTagsProvider<Item> prov) {
146
146
prov .tag (Tags .Items .INGOTS )
147
147
.addTag (AllItemTags .CREATE_INGOTS .tag );
148
148
149
+ prov .tag (AllItemTags .OBSIDIAN_DUST .tag ).add (AllItems .POWDERED_OBSIDIAN .get ());
150
+
149
151
// COMPAT
150
152
151
153
genStrippedWoodItemTags (prov );
You can’t perform that action at this time.
0 commit comments