Skip to content

Commit

Permalink
another perlite fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoriusT committed Nov 8, 2023
1 parent 33602bb commit d178a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/gregapi/data/MT.java
Original file line number Diff line number Diff line change
Expand Up @@ -3717,7 +3717,7 @@ public static class OREMATS {
Smithsonite = oredustelec( 9211, "Smithsonite" , SET_DULL , 110, 223, 210, 255, MORTAR, BLACKLISTED_SMELTER, WASHING_MERCURY, WASHING_PERSULFATE ).setSmelting(Zn , U6).addSourceOf(Zn ).setMcfg( 0, Zn , 1*U, C , 1*U, O , 3*U) ,
Sperrylite = oredustelec( 9212, "Sperrylite" , SET_SHINY , 105, 105, 105, 255, MORTAR, BLACKLISTED_SMELTER, WASHING_MERCURY ).setSmelting(Pt , U4).addSourceOf(Pt,As ).setMcfg( 0, Pt , 1*U, As , 2*U) ,

Perlite = oredustcent( 9138, "Perlite" , SET_DULL , 30, 20, 30, 255, MORTAR, BLACKLISTED_SMELTER ) .setMcfg( 9, Obsidian , 9*U, H2O , 1*U) ,
Perlite = oredustdcmp( 9138, "Perlite" , SET_DULL , 30, 20, 30, 255, MORTAR, BLACKLISTED_SMELTER ) .setMcfg( 1, Obsidian , 1*U, H2O , 1*U) ,
Trona = oredustelec( 9159, "Trona" , SET_METALLIC , 135, 135, 95, 255, MORTAR, BLACKLISTED_SMELTER ) .setMcfg( 6, Na2CO3 , 6*U, H2O , 6*U) ,
Mirabilite = oredustdcmp( 9157, "Mirabilite" , SET_DULL , 240, 250, 210, 255, MORTAR, BLACKLISTED_SMELTER ) .setMcfg( 7, Na2SO4 , 7*U, H2O ,30*U) ,
Bischofite = oredustdcmp( 9221, "Bischofite" , SET_ROUGH , 99, 104, 118, 255, MORTAR, BLACKLISTED_SMELTER ) .setMcfg( 3, MgCl2 , 3*U, H2O , 6*U) ,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtech/loaders/c/Loader_Recipes_Chem.java
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ public class Loader_Recipes_Chem implements Runnable {
RM.Drying .addRecipe1(T, 16, 4000, OP.dust.mat(MT.OREMATS.Bischofite, 1), NF, FL.DistW.make( 2000), OP.dust.mat(MT.MgCl2 , 1));
RM.Drying .addRecipe1(T, 16, 2000, OP.dust.mat(MT.OREMATS.Trona , 1), NF, FL.DistW.make( 1000), OP.dust.mat(MT.Na2CO3 , 1));
RM.Drying .addRecipe1(T, 16, 2000, OP.dust.mat(MT.Gypsum , 1), NF, FL.DistW.make( 1000), OP.dust.mat(MT.CaSO4 , 1));
RM.Drying .addRecipe1(T, 16, 2000, OP.dust.mat(MT.OREMATS.Perlite , 1), NF, FL.DistW.make( 1000), OP.dust.mat(MT.Obsidian, 9));
RM.Drying .addRecipe1(T, 16, 2000, OP.dust.mat(MT.OREMATS.Perlite , 1), NF, FL.DistW.make( 1000), OP.dust.mat(MT.Obsidian, 1));
for (OreDictMaterial tMat : ANY.Clay.mToThis)
RM.Drying .addRecipe1(T, 16, 1000, OP.dust.mat(tMat , 1), NF, FL.DistW.make( 500), OP.dust.mat(MT.Ceramic , 1));
}
Expand Down

0 comments on commit d178a5e

Please sign in to comment.