File tree Expand file tree Collapse file tree 6 files changed +14
-3
lines changed
create/recipes/sequenced_assembly
main/java/com/simibubi/create Expand file tree Collapse file tree 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
54575457afefabc59a37e792b78f4a6a2d437c100a64139d data/create/recipes/scoria_from_stone_types_scoria_stonecutting.json
54585458d6e16599de7424513e1457b07acb6370815d2bd7 data/create/recipes/scoria_pillar_from_stone_types_scoria_stonecutting.json
545954592f660f8cc0a9740ba7e7992d3d51f04b67d23871 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
546154617610e0be633b1ade7ae39db3dbbfe1bd14aa333a data/create/recipes/sequenced_assembly/track.json
546254625e7648d55555c263539a2696b8d1f8d352a71dc9 data/create/recipes/small_andesite_brick_slab.json
546354634734a4ed04708b841f530ea95f23214e3b5d0ea4 data/create/recipes/small_andesite_brick_slab_from_stone_types_andesite_stonecutting.json
@@ -5787,6 +5787,7 @@ d6a4e4fe1204b718010543a28a9b9ec4e0977bd7 data/forge/tags/fluids/tea.json
578757875af3164b14c92d2d6e235b5d4eebd93cbee37c0a data/forge/tags/items/buckets/honey.json
578857882f7cf5a2d485f25d451da9771ed466591cfa5204 data/forge/tags/items/dough.json
578957892f7cf5a2d485f25d451da9771ed466591cfa5204 data/forge/tags/items/dough/wheat.json
5790+ a3ea70dc4ecbf3beeded920313e2770dd4a2dd6a data/forge/tags/items/dusts/obsidian.json
5790579125078dad07e8f75134a98c2dd0f0511c55146bd5 data/forge/tags/items/flour.json
5791579225078dad07e8f75134a98c2dd0f0511c55146bd5 data/forge/tags/items/flour/wheat.json
5792579316bcb8fcbe9170c2c11f1ca8d99d8b36cd812bbd data/forge/tags/items/glass/colorless.json
Original file line number Diff line number Diff line change 11{
22 "type" : " create:sequenced_assembly" ,
33 "ingredient" : {
4- "item " : " create:powdered_obsidian "
4+ "tag " : " forge:dusts/obsidian "
55 },
66 "transitionalItem" : {
77 "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 {
186186 STRIPPED_LOGS (FORGE ),
187187 STRIPPED_WOOD (FORGE ),
188188 PLATES (FORGE ),
189+ OBSIDIAN_DUST (FORGE ,"dusts/obsidian" ),
189190 WRENCH (FORGE , "tools/wrench" ),
190191
191192 ALLURITE (MOD ,"stone_types/galosphere/allurite" ),
Original file line number Diff line number Diff line change 55
66import com .simibubi .create .AllBlocks ;
77import com .simibubi .create .AllItems ;
8+ import com .simibubi .create .AllTags ;
89import com .simibubi .create .AllTags .AllItemTags ;
910import com .simibubi .create .Create ;
1011import com .simibubi .create .content .fluids .transfer .FillingRecipe ;
@@ -51,7 +52,7 @@ public class SequencedAssemblyRecipeGen extends CreateRecipeProvider {
5152 .addStep (DeployerApplicationRecipe ::new , rb -> rb .require (I .largeCog ()))
5253 .addStep (DeployerApplicationRecipe ::new , rb -> rb .require (I .ironNugget ()))),
5354
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 )
5556 .transitionTo (AllItems .INCOMPLETE_REINFORCED_SHEET .get ())
5657 .addOutput (AllItems .STURDY_SHEET .get (), 1 )
5758 .loops (1 )
Original file line number Diff line number Diff line change @@ -146,6 +146,8 @@ private static void genItemTags(RegistrateTagsProvider<Item> prov) {
146146 prov .tag (Tags .Items .INGOTS )
147147 .addTag (AllItemTags .CREATE_INGOTS .tag );
148148
149+ prov .tag (AllItemTags .OBSIDIAN_DUST .tag ).add (AllItems .POWDERED_OBSIDIAN .get ());
150+
149151 // COMPAT
150152
151153 genStrippedWoodItemTags (prov );
You can’t perform that action at this time.
0 commit comments