diff --git a/pom.xml b/pom.xml
index f4e83ede1..84d3ed0a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
de.presti
Ree6
- 1.9.3
+ 1.9.4
jar
diff --git a/src/main/java/de/presti/ree6/main/Main.java b/src/main/java/de/presti/ree6/main/Main.java
index c846e5d35..588aea367 100644
--- a/src/main/java/de/presti/ree6/main/Main.java
+++ b/src/main/java/de/presti/ree6/main/Main.java
@@ -130,7 +130,7 @@ public static void main(String[] args) {
// Create a RayGun Client to send Exception to an external Service for Bug fixing.
Thread.setDefaultUncaughtExceptionHandler((t, e) -> {
RaygunClient raygunClient = new RaygunClient(instance.config.getConfiguration().getString("raygun.apitoken"));
- raygunClient.setVersion("1.9.3");
+ raygunClient.setVersion("1.9.4");
});
// Create a new connection between the Application and the SQL-Server.
@@ -174,7 +174,7 @@ public static void main(String[] args) {
// Create a new Instance of the Bot, as well as add the Events.
try {
- BotWorker.createBot(BotVersion.RELEASE, "1.9.3");
+ BotWorker.createBot(BotVersion.RELEASE, "1.9.4");
instance.musicWorker = new MusicWorker();
instance.addEvents();
} catch (Exception ex) {