We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb61a43 commit f133078Copy full SHA for f133078
src/main/java/io/github/moulberry/repo/data/NEUForgeRecipe.java
@@ -2,6 +2,7 @@
2
3
4
import lombok.Getter;
5
+import org.checkerframework.checker.nullness.qual.Nullable;
6
7
import java.util.Collection;
8
import java.util.Collections;
@@ -16,10 +17,16 @@ public class NEUForgeRecipe implements NEURecipe {
16
17
int duration;
18
@Getter
19
transient NEUIngredient outputStack;
20
+ @Getter
21
+ @Nullable
22
+ String extraText;
23
24
25
@Override
26
public void fillItemInfo(NEUItem item) {
27
+ if (extraText == null) {
28
+ extraText = item.crafttext;
29
+ }
30
if (overrideOutputId == null) {
31
outputStack = NEUIngredient.fromString(item.skyblockItemId);
32
} else {
0 commit comments