diff --git a/pom.xml b/pom.xml index 74aa893f3..e37355179 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ de.presti Ree6 - 1.9.1 + 1.9.2 jar diff --git a/src/main/java/de/presti/ree6/main/Main.java b/src/main/java/de/presti/ree6/main/Main.java index 579428789..2c30c2d3a 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.1"); + raygunClient.setVersion("1.9.2"); }); // Create a new connection between the Application and the SQL-Server. @@ -173,7 +173,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.1"); + BotWorker.createBot(BotVersion.RELEASE, "1.9.2"); instance.musicWorker = new MusicWorker(); instance.addEvents(); } catch (Exception ex) {