diff options
author | 梅天佑 <52530814+MeiTianyou@users.noreply.github.com> | 2023-05-16 23:20:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 17:20:41 +0200 |
commit | cf0afb6f8246408293f5702c27487cc19aa16b41 (patch) | |
tree | bf84cf614e282cab72023cf05fa80762cd911c9a /src/main/java/gregtech/api/util | |
parent | 04514282c08ebefdb3e68a46db34092f72be2316 (diff) | |
download | GT5-Unofficial-cf0afb6f8246408293f5702c27487cc19aa16b41.tar.gz GT5-Unofficial-cf0afb6f8246408293f5702c27487cc19aa16b41.tar.bz2 GT5-Unofficial-cf0afb6f8246408293f5702c27487cc19aa16b41.zip |
Fixes several minor bugs (#630)
* Always store at least 2048 EU regardless of tier, so that the machine can work properly
should close #11190 in GTNewHorizons/GT-New-Horizons-Modpack
* change tooltip to match real formula
should close #13238 in GTNewHorizons GT-New-Horizons-Modpack
* shot in the dark to fix some chemical formulas
* Fix hardcoded formula for ZrF_4
* fix nitinol formula
* Add a method to count uppercase characters
* A better shot at fixing chemical formulas
Added ghetto detection of when there is more than 1 element in a grouping, even when their symbols combined don't exceed three characters (like hydroxide)
* fix material components in ammonium tetrafluoroberyllate
last in a series of commits designed to resolve #11340 in GTNewHorizons/GT-New-Horizons-Modpack
* Add a method that only exposes the data orb selected by the circuot
* Make the duplicator only check for recipes with the selected data orb
Should close #11583 in GTNewHorizons/GT-New-Horizons-Modpack
* Change TGS tooltip to reflect real behavior
* Change TGS info in NEI to reflect true behavior
Should close #11650 in GTNewHorizons/GT-New-Horizons-Modpack
* Don't remove energy from the PSS when it attempts to fill a full hatch
should resolve #13317 in GTNewHorizons/GT-New-Horizons-Modpack, where the issues was mistakenly identified as the PSS accepting power when it is full. In fact, it does stop accepting power when full, but it is constantly leaking power into hatches.
However it should be noted that unless the PSS has no hatches, it pays a tax each tick which will of course mean that it is almost never going to be filled up.
* Fix some minor errors due to writing all previous commmits with github's file-view edit feature
try it sometime and suffer!
also spotless apply
* better formatting
* off by one
* add a line for power loss in the gui
* fix 0iq moment
* Revert "Don't remove energy from the PSS when it attempts to fill a full hatch"
This reverts commit c20cc0b3a528872c8003bea2944aa1ad7a020e01.
* typo
* additional typo
* Delete layout.json
merp
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r-- | src/main/java/gregtech/api/util/GTPP_Recipe.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/api/util/GTPP_Recipe.java b/src/main/java/gregtech/api/util/GTPP_Recipe.java index c58401a04c..9e3d7f7102 100644 --- a/src/main/java/gregtech/api/util/GTPP_Recipe.java +++ b/src/main/java/gregtech/api/util/GTPP_Recipe.java @@ -823,9 +823,9 @@ public class GTPP_Recipe extends GT_Recipe { }.useModularUI(true).setNEISpecialInfoFormatter((recipeInfo, applyPrefixAndSuffix) -> { List<String> result = new ArrayList<>(); if (ModItems.fluidFertBasic != null) { - result.add("Sapling is outputted if"); - result.add("" + ModItems.fluidFertBasic.getLocalizedName() + " is provided."); - result.add("This is optional."); + result.add("The sapling is not consumed."); + result.add("If " + ModItems.fluidFertBasic.getLocalizedName() + " is provided,"); + result.add("Saplings are made instead"); } return result; }); |