diff options
author | MuXiu1997 <MuXiu1997@Gmail.com> | 2022-04-08 21:41:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 15:41:30 +0200 |
commit | 1a7e8f13d7253d1b14dab2eeb99d406234e2485f (patch) | |
tree | 5ae385baa3ff4404d59ea311c448fab868c7b9dd /src/main/java/gregtech/common | |
parent | 6c517bd58bacb055cddb0ae49667e0daa3ea346a (diff) | |
download | GT5-Unofficial-1a7e8f13d7253d1b14dab2eeb99d406234e2485f.tar.gz GT5-Unofficial-1a7e8f13d7253d1b14dab2eeb99d406234e2485f.tar.bz2 GT5-Unofficial-1a7e8f13d7253d1b14dab2eeb99d406234e2485f.zip |
Allows sorting of configuration circuits (#1012)
* Allows sorting of configuration circuits
* Fix things
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/GT_Proxy.java | 5 |
1 files changed, 5 insertions, 0 deletions
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<String, Integer> mCircuitsOrder = new HashMap<>(); + public static final int GUI_ID_COVER_SIDE_BASE = 10; // Takes GUI ID 10 - 15 public static Map<String, Integer> oreDictBurnTimes = new HashMap<>(); |