Skip to content

Commit

Permalink
fix(recipes): ✏️[Syngas producer] fix rates of compressed coal
Browse files Browse the repository at this point in the history
Now each compression level increase yield only x4 instead of x10 or x9
  • Loading branch information
Krutoy242 committed Mar 3, 2024
1 parent a78a39f commit beac507
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions config/AdvGenerators/overrides/syngas.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ recipes {
carbon-value: I:contenttweaker:empowered_phosphor => 180000
carbon-value: I:contenttweaker:saturated_phosphor => 450000
carbon-value: B:contenttweaker:conglomerate_of_coal => 60000
carbon-value: OD:blockCharcoal => 16000
carbon-value: OD:blockGraphite => 16000
carbon-value: OD:compressedCharcoal2x => 64000
carbon-value: OD:compressedCharcoal3x => 256000
carbon-value: OD:compressedCoal2x => 64000
carbon-value: OD:compressedCoal3x => 256000
carbon-value: OD:blockCharcoal => 6400
carbon-value: OD:blockGraphite => 14400
carbon-value: OD:compressedCharcoal2x => 25600
carbon-value: OD:compressedCharcoal3x => 102400
carbon-value: OD:compressedCoal2x => 25600
carbon-value: OD:compressedCoal3x => 102400

if HaveOD fuelCoke {
carbon-value: OD:fuelCoke => 3200
Expand Down
12 changes: 6 additions & 6 deletions scripts/jei/mod/advgenerators.zs
Original file line number Diff line number Diff line change
Expand Up @@ -184,19 +184,19 @@ return cfg
})
} */
addSyngas(<contenttweaker:saturated_phosphor>, 450000);
addSyngas(<ore:compressedCharcoal3x>, 256000);
addSyngas(<ore:compressedCoal3x>, 256000);
addSyngas(<contenttweaker:empowered_phosphor>, 180000);
addSyngas(<contenttweaker:blasted_coal>, 120000);
addSyngas(<ore:compressedCharcoal2x>, 64000);
addSyngas(<ore:compressedCoal2x>, 64000);
addSyngas(<ore:compressedCharcoal3x>, 102400);
addSyngas(<ore:compressedCoal3x>, 102400);
addSyngas(<contenttweaker:conglomerate_of_coal>, 60000);
// addSyngas(<railcraft:cube:0>, 32000);
addSyngas(<ore:blockFuelCoke>, 32000);
addSyngas(<ore:crystalCrudeOil>, 32000);
addSyngas(<ore:blockCharcoal>, 16000);
addSyngas(<ore:blockGraphite>, 16000);
addSyngas(<ore:compressedCharcoal2x>, 25600);
addSyngas(<ore:compressedCoal2x>, 25600);
addSyngas(<ore:blockGraphite>, 14400);
addSyngas(<rats:little_black_squash_balls>, 8000);
addSyngas(<ore:blockCharcoal>, 6400);
addSyngas(<ore:fuelCoke>, 3200);
addSyngas(<mekanism:compressedcarbon>, 3200);
addSyngas(<ore:logWood>, 1600);
Expand Down

0 comments on commit beac507

Please sign in to comment.