diff options
| author | chochem <40274384+chochem@users.noreply.github.com> | 2024-08-21 12:37:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-21 11:37:02 +0000 |
| commit | de0452c4d800d671bc38757c85966850cfd4b8b2 (patch) | |
| tree | 7822a54cb05382fd6bd15b4917bc59e87ed4e131 /src/main/java/gtPlusPlus/xmod/gregtech/common/items | |
| parent | 8130497452b4aa7df26f4b61672113775bcf0442 (diff) | |
| download | GT5-Unofficial-de0452c4d800d671bc38757c85966850cfd4b8b2.tar.gz GT5-Unofficial-de0452c4d800d671bc38757c85966850cfd4b8b2.tar.bz2 GT5-Unofficial-de0452c4d800d671bc38757c85966850cfd4b8b2.zip | |
Fix full amp recipes (#2930)
* round 1
* RS-AL recipes
* round 3 with a bit of cleanup
* round 4
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common/items')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java index 3cd82939d4..ec9416be02 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java @@ -341,14 +341,14 @@ public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 { GT_Values.RA.stdBuilder() .itemInputs(GregtechItemList.Pellet_RTG_SR90.get(1)) .duration(0) - .eut(32) + .eut(TierEU.RECIPE_LV) .metadata(RTG_DURATION_IN_DAYS, MathUtils.roundToClosestInt(28.8f)) .addTo(rtgFuels); GT_Values.RA.stdBuilder() .itemInputs(GregtechItemList.Pellet_RTG_PO210.get(1)) .duration(0) - .eut(TierEU.HV) + .eut(TierEU.RECIPE_HV) .metadata(RTG_DURATION_IN_DAYS, 1) .addTo(rtgFuels); |
