diff options
| author | Cow <cow@volloeko.de> | 2020-09-24 17:58:17 +0200 |
|---|---|---|
| committer | Cow <cow@volloeko.de> | 2020-09-24 17:58:17 +0200 |
| commit | 7d4f2b900254d961b847f573237e3e6f40bff8e9 (patch) | |
| tree | 8fa85fc9212ffc9b8a16796c682d87667ec294a5 /src/main/java/de/cowtipper/cowlection/handler | |
| parent | 705299e37d27d421156a09213e0654d0ab4fb01c (diff) | |
| download | Cowlection-7d4f2b900254d961b847f573237e3e6f40bff8e9.tar.gz Cowlection-7d4f2b900254d961b847f573237e3e6f40bff8e9.tar.bz2 Cowlection-7d4f2b900254d961b847f573237e3e6f40bff8e9.zip | |
Config (gui) rework
- Completely re-done the config gui (`/moo config`)
- Improved SkyBlock dungeon party finder
- Improved SkyBlock dungeon performance overlay
- Improved handling of invalid/missing Hypixel API key
- minor text fixes
Diffstat (limited to 'src/main/java/de/cowtipper/cowlection/handler')
| -rw-r--r-- | src/main/java/de/cowtipper/cowlection/handler/FriendsHandler.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/de/cowtipper/cowlection/handler/FriendsHandler.java b/src/main/java/de/cowtipper/cowlection/handler/FriendsHandler.java index bb4d916..c2c6837 100644 --- a/src/main/java/de/cowtipper/cowlection/handler/FriendsHandler.java +++ b/src/main/java/de/cowtipper/cowlection/handler/FriendsHandler.java @@ -118,7 +118,7 @@ public class FriendsHandler { if (!bestFriend.equals(Friend.FRIEND_NOT_FOUND)) { bestFriend.setLastChecked(System.currentTimeMillis()); if (isCommandTriggered) { - throw new MooCommandException(friend.getName() + " hasn't changed his name"); + throw new MooCommandException(friend.getName() + " hasn't changed their name"); } } } else { @@ -202,8 +202,8 @@ public class FriendsHandler { }); } } else { - new TickDelay(() -> main.getChatHelper().sendMessage(EnumChatFormatting.RED, "Couldn't check best friends online status because it has not been long enough since the last check. Next check via " + EnumChatFormatting.WHITE + "/moo online" + EnumChatFormatting.RED + " available in " + DurationFormatUtils.formatDurationWords(nextBestFriendOnlineCheck - System.currentTimeMillis(), true, true)) - , isCommandTriggered ? 1 : 100); + new TickDelay(() -> main.getChatHelper().sendMessage(EnumChatFormatting.RED, "Couldn't check best friends online status because it has not been long enough since the last check. Next check via " + EnumChatFormatting.WHITE + "/moo online" + EnumChatFormatting.RED + " available in " + DurationFormatUtils.formatDurationWords(nextBestFriendOnlineCheck - System.currentTimeMillis(), true, true)), + isCommandTriggered ? 1 : 100); } } |
