From 1a7e8f13d7253d1b14dab2eeb99d406234e2485f Mon Sep 17 00:00:00 2001 From: MuXiu1997 Date: Fri, 8 Apr 2022 21:41:30 +0800 Subject: Allows sorting of configuration circuits (#1012) * Allows sorting of configuration circuits * Fix things --- src/main/java/gregtech/common/GT_Proxy.java | 5 +++++ 1 file changed, 5 insertions(+) (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 987b573637..40b7381e48 100644 --- a/src/main/java/gregtech/common/GT_Proxy.java +++ b/src/main/java/gregtech/common/GT_Proxy.java @@ -290,6 +290,11 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler { */ public int mTooltipShiftVerbosity = 3; + /** + * What is the order of the circuits when they are selected? + */ + public Map mCircuitsOrder = new HashMap<>(); + public static final int GUI_ID_COVER_SIDE_BASE = 10; // Takes GUI ID 10 - 15 public static Map oreDictBurnTimes = new HashMap<>(); -- cgit