diff options
author | GDCloud <93287602+GDCloudstrike@users.noreply.github.com> | 2024-10-17 12:44:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 10:44:06 +0000 |
commit | 994490cac9fd9ff71fcea7f2b9e97e420e04ac26 (patch) | |
tree | 09c8925731f54274d407dfff95bf389e4a4b12a9 /src/main/java/gregtech/common/GTProxy.java | |
parent | 7ad32098ac5d941f32fff792fc9a11af1097b310 (diff) | |
download | GT5-Unofficial-994490cac9fd9ff71fcea7f2b9e97e420e04ac26.tar.gz GT5-Unofficial-994490cac9fd9ff71fcea7f2b9e97e420e04ac26.tar.bz2 GT5-Unofficial-994490cac9fd9ff71fcea7f2b9e97e420e04ac26.zip |
Bind all tooltip separators to the config (#3376)
Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/common/GTProxy.java')
-rw-r--r-- | src/main/java/gregtech/common/GTProxy.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/GTProxy.java b/src/main/java/gregtech/common/GTProxy.java index 1515256ec1..643811234d 100644 --- a/src/main/java/gregtech/common/GTProxy.java +++ b/src/main/java/gregtech/common/GTProxy.java @@ -692,6 +692,12 @@ public abstract class GTProxy implements IGTMod, IFuelHandler { public int separatorStyle = 2; /** + * Which style should tooltip finisher separator lines have? 0: no line, 1: empty line, 2: dashed line, 3+: + * continuous line + */ + public int tooltipFinisherStyle = 1; + + /** * Whether to show seconds or ticks on NEI */ public boolean mNEIRecipeSecondMode = true; |