diff options
author | Cow <cow@volloeko.de> | 2020-06-23 23:33:30 +0200 |
---|---|---|
committer | Cow <cow@volloeko.de> | 2020-06-23 23:33:30 +0200 |
commit | 4570bbdc873f2c3b0905ca936226118b9a88a7b5 (patch) | |
tree | fa302c044a60436bd7adea3cea2bc5daeba19275 /src/main/java/eu/olli/cowmoonication/config | |
parent | 77735fd8edacd9dc996db8de424f5ee7c73dff77 (diff) | |
download | Cowlection-4570bbdc873f2c3b0905ca936226118b9a88a7b5.tar.gz Cowlection-4570bbdc873f2c3b0905ca936226118b9a88a7b5.tar.bz2 Cowlection-4570bbdc873f2c3b0905ca936226118b9a88a7b5.zip |
Enhanced auctions' tooltips: price per item
Diffstat (limited to 'src/main/java/eu/olli/cowmoonication/config')
-rw-r--r-- | src/main/java/eu/olli/cowmoonication/config/MooConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/eu/olli/cowmoonication/config/MooConfig.java b/src/main/java/eu/olli/cowmoonication/config/MooConfig.java index dd6b462..097f0de 100644 --- a/src/main/java/eu/olli/cowmoonication/config/MooConfig.java +++ b/src/main/java/eu/olli/cowmoonication/config/MooConfig.java @@ -38,6 +38,7 @@ public class MooConfig { public static boolean showBestFriendNotifications; public static boolean showFriendNotifications; public static boolean showGuildNotifications; + public static boolean showAdvancedTooltips; public static String[] tabCompletableNamesCommands; private static String numeralSystem; // logs search config @@ -127,6 +128,8 @@ public class MooConfig { "showFriendNotifications", false, "Set to true to receive friends' login/logout messages, set to false hide them."), true); Property propShowGuildNotifications = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, "showGuildNotifications", false, "Set to true to receive guild members' login/logout messages, set to false hide them."), true); + Property propShowAdvancedTooltips = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, + "showAdvancedTooltips", true, "Set to true to show advanced tooltips, set to false show default tooltips."), true); Property propNumeralSystem = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, "numeralSystem", "Arabic numerals: 1, 4, 10", "Use Roman or Arabic numeral system?", new String[]{"Arabic numerals: 1, 4, 10", "Roman numerals: I, IV, X"}), true); Property propTabCompletableNamesCommands = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, @@ -158,6 +161,7 @@ public class MooConfig { showBestFriendNotifications = propShowBestFriendNotifications.getBoolean(); showFriendNotifications = propShowFriendNotifications.getBoolean(); showGuildNotifications = propShowGuildNotifications.getBoolean(); + showAdvancedTooltips = propShowAdvancedTooltips.getBoolean(); numeralSystem = propNumeralSystem.getString(); tabCompletableNamesCommands = propTabCompletableNamesCommands.getStringList(); moo = propMoo.getString(); @@ -176,6 +180,7 @@ public class MooConfig { propShowBestFriendNotifications.set(showBestFriendNotifications); propShowFriendNotifications.set(showFriendNotifications); propShowGuildNotifications.set(showGuildNotifications); + propShowAdvancedTooltips.set(showAdvancedTooltips); propNumeralSystem.set(numeralSystem); propTabCompletableNamesCommands.set(tabCompletableNamesCommands); propMoo.set(moo); |