Skip to content

Commit

Permalink
here
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoriusT committed Jul 13, 2024
1 parent 79f7e7a commit fed290b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregtech/loaders/c/Loader_Recipes_Vanilla.java
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ public class Loader_Recipes_Vanilla implements Runnable {
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Blocks.stained_glass , 1, W), OM.dust(MT.Glass, U*9));
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Blocks.glass_pane , 1, W), OM.dust(MT.Glass, U));
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Blocks.stained_glass_pane, 1, W), OM.dust(MT.Glass, U));
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Items.bone, 1, W), IL.Dye_Bonemeal.get(2));
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Items.bone, 1, W), IL.Dye_Bonemeal.get(2)); if (IL.WiMo_Thick_Bone.exists())
RM.Mortar .addRecipe1(T, 16, 64, IL.WiMo_Thick_Bone.get(1), IL.Dye_Bonemeal.get(4));
RM.Mortar .addRecipe1(T, 16, 16, ST.make(Items.flint, 1, W), dust.mat(MT.Flint, 1));
RM.Mortar .addRecipe1(T, 16, 32, ST.make(Blocks.gravel, 1, W), ST.make(Items.flint, 1, 0));
Expand All @@ -688,7 +688,7 @@ public class Loader_Recipes_Vanilla implements Runnable {
RM.Shredder .addRecipe1(T, 16, 16, IL.Module_Stone_Generator.get(0), OM.dust(MT.Stone));
RM.Shredder .addRecipe1(T, 16, 16, IL.Module_Basalt_Generator.get(0), OM.dust(MT.STONES.Basalt));
RM.Shredder .addRecipe1(T, 16, 16, IL.Module_Blackstone_Generator.get(0), OM.dust(MT.STONES.Blackstone));
RM.Shredder .addRecipe1(T, 16, 32, ST.make(Items.bone, 1, W), IL.Dye_Bonemeal.get(4));
RM.Shredder .addRecipe1(T, 16, 32, ST.make(Items.bone, 1, W), IL.Dye_Bonemeal.get(4)); if (IL.WiMo_Thick_Bone.exists())
RM.Shredder .addRecipe1(T, 16, 64, IL.WiMo_Thick_Bone.get(1), IL.Dye_Bonemeal.get(8));
RM.Shredder .addRecipe1(T, 16,128, 6000, ST.make(Blocks.melon_block, 1, W), IL.Remains_Fruit.get(9));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void onRegistration(MultiTileEntityRegistry aRegistry, short aID) {
@Override
public void onTick(long aTimer, boolean aIsServerSide) {
super.onTick(aTimer, aIsServerSide);
if (mFluid.amount <= 0) {mFluid.amount = 600;}
if (mFluid.amount <= 0) mFluid.amount = 600;
if (aIsServerSide) {
boolean tProduce = F;
if (mActive) {
Expand Down

0 comments on commit fed290b

Please sign in to comment.