diff options
author | Cow <cow@volloeko.de> | 2020-07-28 18:02:32 +0200 |
---|---|---|
committer | Cow <cow@volloeko.de> | 2020-07-28 18:02:32 +0200 |
commit | 521cc85ee089b4b4fb666b923470eb99455cc6f4 (patch) | |
tree | 33e51e23c85f84fe0dfe85be9af881714cef93ec /src/main/java/de/cowtipper/cowlection/config/MooConfig.java | |
parent | b393636cb3f7e05ef8b34804eeb06357f1b9cfbe (diff) | |
download | Cowlection-521cc85ee089b4b4fb666b923470eb99455cc6f4.tar.gz Cowlection-521cc85ee089b4b4fb666b923470eb99455cc6f4.tar.bz2 Cowlection-521cc85ee089b4b4fb666b923470eb99455cc6f4.zip |
Added best friends online check
runs automatically after joining a server or manually with `/moo online`
Diffstat (limited to 'src/main/java/de/cowtipper/cowlection/config/MooConfig.java')
-rw-r--r-- | src/main/java/de/cowtipper/cowlection/config/MooConfig.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/de/cowtipper/cowlection/config/MooConfig.java b/src/main/java/de/cowtipper/cowlection/config/MooConfig.java index 84cbc1f..9cbe1b9 100644 --- a/src/main/java/de/cowtipper/cowlection/config/MooConfig.java +++ b/src/main/java/de/cowtipper/cowlection/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 doBestFriendsOnlineCheck; public static boolean showAdvancedTooltips; public static String[] tabCompletableNamesCommands; private static String numeralSystem; @@ -132,6 +133,8 @@ public class MooConfig { "showFriendNotifications", true, "Set to true to receive friends' login/logout messages, set to false hide them."), true); Property propShowGuildNotifications = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, "showGuildNotifications", true, "Set to true to receive guild members' login/logout messages, set to false hide them."), true); + Property propDoBestFriendsOnlineCheck = addConfigEntry(cfg.get(Configuration.CATEGORY_CLIENT, + "doBestFriendsOnlineCheck", true, "Set to true to check best friends' online status when joining a server, set to false to disable."), 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, @@ -174,6 +177,7 @@ public class MooConfig { showBestFriendNotifications = propShowBestFriendNotifications.getBoolean(); showFriendNotifications = propShowFriendNotifications.getBoolean(); showGuildNotifications = propShowGuildNotifications.getBoolean(); + doBestFriendsOnlineCheck = propDoBestFriendsOnlineCheck.getBoolean(); showAdvancedTooltips = propShowAdvancedTooltips.getBoolean(); numeralSystem = propNumeralSystem.getString(); tabCompletableNamesCommands = propTabCompletableNamesCommands.getStringList(); @@ -198,6 +202,7 @@ public class MooConfig { propShowBestFriendNotifications.set(showBestFriendNotifications); propShowFriendNotifications.set(showFriendNotifications); propShowGuildNotifications.set(showGuildNotifications); + propDoBestFriendsOnlineCheck.set(doBestFriendsOnlineCheck); propShowAdvancedTooltips.set(showAdvancedTooltips); propNumeralSystem.set(numeralSystem); propTabCompletableNamesCommands.set(tabCompletableNamesCommands); |