From 68bddf6abb4587ce5934c50271cd9e751b43555a Mon Sep 17 00:00:00 2001 From: miozune Date: Sat, 16 Jul 2022 06:57:41 +0900 Subject: Add recipe owner display (#1135) --- src/main/java/gregtech/common/GT_Proxy.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/main/java/gregtech/common') 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; @@ -291,6 +290,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? */ -- cgit