diff --git a/pom.xml b/pom.xml
index bdec26fe..5c55bbc2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,7 +39,7 @@
com.discord4j
discord4j-core
- 3.0.7
+ 3.0.10
commons-io
@@ -49,12 +49,12 @@
org.apache.logging.log4j
log4j-slf4j-impl
- 2.12.0
+ 2.12.1
org.json
json
- 20180813
+ 20190722
com.github.Vauff
@@ -64,13 +64,13 @@
mysql
mysql-connector-java
- 8.0.16
+ 8.0.18
org.mongodb
mongodb-driver-sync
- 3.10.2
+ 3.11.2
- r9
+ r10
\ No newline at end of file
diff --git a/src/com/vauff/maunzdiscord/commands/Discord.java b/src/com/vauff/maunzdiscord/commands/Discord.java
index 59ba6bc0..5610e188 100644
--- a/src/com/vauff/maunzdiscord/commands/Discord.java
+++ b/src/com/vauff/maunzdiscord/commands/Discord.java
@@ -11,7 +11,7 @@ public class Discord extends AbstractCommand
@Override
public void exe(MessageCreateEvent event, MessageChannel channel, User author) throws Exception
{
- Util.msg(channel, author, "Bot invite link: ~~~~ (currently disabled)" + System.lineSeparator() + "Maunz Hub server invite link: https://discord.gg/v55fW9b");
+ Util.msg(channel, author, "Bot invite link: " + System.lineSeparator() + "Maunz Hub server invite link: https://discord.gg/v55fW9b");
}
@Override
diff --git a/src/com/vauff/maunzdiscord/commands/Services.java b/src/com/vauff/maunzdiscord/commands/Services.java
index c7ea0971..a036af06 100644
--- a/src/com/vauff/maunzdiscord/commands/Services.java
+++ b/src/com/vauff/maunzdiscord/commands/Services.java
@@ -13,7 +13,7 @@ public void exe(MessageCreateEvent event, MessageChannel channel, User author) t
{
if (Util.hasPermission(author, event.getGuild().block()))
{
- Util.msg(channel, author, "This command is temporarily unavailable until a future release");
+ Util.msg(channel, author, "This command is temporarily unavailable until a future release" + System.lineSeparator() + System.lineSeparator() + "In the meantime, you can head over to the **#help** channel at https://discord.gg/v55fW9b to request manual service management (additions, edits, etc.). Please see the pinned message there for more details on how to proceed.");
}
else
{
diff --git a/src/com/vauff/maunzdiscord/core/Main.java b/src/com/vauff/maunzdiscord/core/Main.java
index 48014997..450a4458 100644
--- a/src/com/vauff/maunzdiscord/core/Main.java
+++ b/src/com/vauff/maunzdiscord/core/Main.java
@@ -16,7 +16,7 @@ public class Main
{
public static DiscordClient client;
public static MongoDatabase mongoDatabase;
- public static String version = "r9";
+ public static String version = "r10";
public static void main(String[] args)
{
diff --git a/src/com/vauff/maunzdiscord/features/ServerTimer.java b/src/com/vauff/maunzdiscord/features/ServerTimer.java
index 71b8826f..93eb6f98 100644
--- a/src/com/vauff/maunzdiscord/features/ServerTimer.java
+++ b/src/com/vauff/maunzdiscord/features/ServerTimer.java
@@ -36,6 +36,8 @@ public void run()
{
if (Main.client.isConnected())
{
+ Logger.log.debug("Starting a server timer run...");
+
for (File file : new File(Util.getJarLocation() + "data/services/server-tracking").listFiles())
{
String id = file.getName();