aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2022-07-16 06:57:41 +0900
committerGitHub <noreply@github.com>2022-07-15 22:57:41 +0100
commit68bddf6abb4587ce5934c50271cd9e751b43555a (patch)
tree3a0917265a574285b38120c310cc58f449f20628 /src/main/java/gregtech/common
parentdbd0e98223f34787e557b7d4357d3480955db4d9 (diff)
downloadGT5-Unofficial-68bddf6abb4587ce5934c50271cd9e751b43555a.tar.gz
GT5-Unofficial-68bddf6abb4587ce5934c50271cd9e751b43555a.tar.bz2
GT5-Unofficial-68bddf6abb4587ce5934c50271cd9e751b43555a.zip
Add recipe owner display (#1135)
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/GT_Proxy.java16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_Proxy.java b/src/main/java/gregtech/common/GT_Proxy.java
index 915fe650a7..71063949fe 100644
--- a/src/main/java/gregtech/common/GT_Proxy.java
+++ b/src/main/java/gregtech/common/GT_Proxy.java
@@ -153,7 +153,6 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
public boolean mIncreaseDungeonLoot = true;
public boolean mAxeWhenAdventure = true;
public boolean mSurvivalIntoAdventure = false;
- public boolean mNEIRecipeSecondMode = true;
public boolean mNerfedWoodPlank = true;
public boolean mNerfedVanillaTools = true;
public boolean mHardRock = false;
@@ -292,6 +291,21 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler {
public int mTooltipShiftVerbosity = 3;
/**
+ * Whether to show seconds or ticks on NEI
+ */
+ public boolean mNEIRecipeSecondMode = true;
+
+ /**
+ * This enables "Recipe by" display on NEI
+ */
+ public boolean mNEIRecipeOwner = false;
+
+ /**
+ * This enables showing stack traces where the recipe was added. Reboot needed
+ */
+ public boolean mNEIRecipeOwnerStackTrace = false;
+
+ /**
* What is the order of the circuits when they are selected?
*/
public Map<String, Integer> mCircuitsOrder = new HashMap<>();