Skip to content

Commit

Permalink
tritium was burnable but deuterium wasnt somehow
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoriusT committed May 25, 2024
1 parent 5bb5b5b commit e91bbd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregapi/data/CS.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2023 GregTech-6 Team
* Copyright (c) 2024 GregTech-6 Team
*
* This file is part of GregTech.
*
Expand Down Expand Up @@ -867,7 +867,7 @@ public class CS {
@SuppressWarnings("deprecation")
public static boolean
APRIL_FOOLS = (new Date().getMonth() == 3 && new Date().getDate() <= 2),
WOODMANS_BDAY = (new Date().getMonth() == 5 && new Date().getDate() >= 21),
WOODMANS_BDAY = (new Date().getMonth() == 5 && new Date().getDate() >= 20),
XMAS_IN_JULY = (new Date().getMonth() == 6 && new Date().getDate() >= 23),
XMAS_IN_DECEMBER = (new Date().getMonth() == 11 && new Date().getDate() >= 6);
/** This means that Client or Server specific Base Files are definitely existing and loaded! Not if the World is actually client side or server side! */
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/gregtech/loaders/b/Loader_Fuels.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2023 GregTech-6 Team
* Copyright (c) 2024 GregTech-6 Team
*
* This file is part of GregTech.
*
Expand Down Expand Up @@ -155,9 +155,11 @@ public void run() {

FM.Burn .addRecipe0(T, - 16, 1, FL.make("hydrogen", 2) , FL.Water.make(3), ZL_IS);
FM.Gas .addRecipe0(T, - 16, 2, FL.make("hydrogen", 2) , FL.Water.make(3), ZL_IS);
FM.Burn .addRecipe0(T, - 16, 1, FL.amount(MT.D.mGas, 2) , FL.amount(MT.D2O.mLiquid, 3), ZL_IS);
FM.Gas .addRecipe0(T, - 16, 2, FL.amount(MT.D.mGas, 2) , FL.amount(MT.D2O.mLiquid, 3), ZL_IS);
FM.Burn .addRecipe0(T, - 16, 1, FL.amount(MT.T.mGas, 2) , FL.amount(MT.T2O.mLiquid, 3), ZL_IS);
FM.Gas .addRecipe0(T, - 16, 2, FL.amount(MT.T.mGas, 2) , FL.amount(MT.T2O.mLiquid, 3), ZL_IS);

FM.Burn .addRecipe0(T, - 64, 24, FL.make("methane", 5) , FL.Water.make(6), FL.CarbonDioxide.make(3));
FM.Burn .addRecipe0(T, - 64, 24, FL.make("gas_natural_gas", 5) , FL.Water.make(6), FL.CarbonDioxide.make(3));
FM.Gas .addRecipe0(T, - 64, 30, FL.make("methane", 5) , FL.Water.make(6), FL.CarbonDioxide.make(3));
Expand Down

0 comments on commit e91bbd2

Please sign in to comment.