Skip to content

Commit 1e5d912

Browse files
committed
now decomposition process 6gunpowder -> ... 3 carbon dust instead of 3 coal dust
1 parent 46d614f commit 1e5d912

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/gregtechceu/gtceu/common/data/materials/UnknownCompositionMaterials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ public static void register() {
367367
.dust(0)
368368
.color(0xa4a4a4).secondaryColor(0x767676).iconSet(ROUGH)
369369
.flags(FLAMMABLE, EXPLOSIVE, NO_SMELTING, NO_SMASHING)
370-
.components(Saltpeter, 2, Sulfur, 1, Coal, 3)
370+
.components(Saltpeter, 2, Sulfur, 1, Carbon, 3)
371371
.buildAndRegister();
372372

373373
Oilsands = new Material.Builder(GTCEu.id("oilsands"))

src/main/java/com/gregtechceu/gtceu/data/recipe/serialized/chemistry/MixerRecipes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
268268
MIXER_RECIPES.recipeBuilder("gunpowder_from_carbon").duration(400).EUt(VA[ULV])
269269
.inputItems(dust, Saltpeter, 2)
270270
.inputItems(dust, Sulfur)
271-
.inputItems(dust, Carbon, 6)
271+
.inputItems(dust, Carbon, 3)
272272
.circuitMeta(1)
273273
.outputItems(dust, Gunpowder, 6)
274274
.save(provider);

0 commit comments

Comments
 (0)