diff options
author | miozune <miozune@gmail.com> | 2022-07-16 06:57:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 22:57:41 +0100 |
commit | 68bddf6abb4587ce5934c50271cd9e751b43555a (patch) | |
tree | 3a0917265a574285b38120c310cc58f449f20628 /src/main/java/gregtech/common | |
parent | dbd0e98223f34787e557b7d4357d3480955db4d9 (diff) | |
download | GT5-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.java | 16 |
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<>(); |