diff --git a/pom.xml b/pom.xml index e32f9c8d6..b19c60ff7 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ de.presti Ree6 - 1.7.19 + 1.7.20 jar Ree6 Ree6 is an open-Source Discord Bot. diff --git a/src/main/java/de/presti/ree6/main/Main.java b/src/main/java/de/presti/ree6/main/Main.java index ee5f4b82b..3ab1eb7a0 100644 --- a/src/main/java/de/presti/ree6/main/Main.java +++ b/src/main/java/de/presti/ree6/main/Main.java @@ -99,7 +99,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.7.19"); + raygunClient.setVersion("1.7.20"); }); // Create a new connection between the Application and the SQL-Server. @@ -136,7 +136,7 @@ public static void main(String[] args) { // Create a new Instance of the Bot, as well as add the Events. try { - BotWorker.createBot(BotVersion.PUBLIC, "1.7.19"); + BotWorker.createBot(BotVersion.PUBLIC, "1.7.20"); instance.musicWorker = new MusicWorker(); instance.addEvents(); } catch (Exception ex) {