aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util/GTPP_Recipe.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/util/GTPP_Recipe.java')
-rw-r--r--src/main/java/gregtech/api/util/GTPP_Recipe.java6
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;
});