diff --git a/pom.xml b/pom.xml
index 14344c1..8f9445d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,6 +58,11 @@
jcenter-bintray
https://jcenter.bintray.com
+
+ dv8tion
+ m2-dv8tion
+ https://m2.dv8tion.net/releases
+
@@ -89,17 +94,12 @@
org.kohsuke
github-api
- 1.127
+ 1.128
com.sedmelluq
lavaplayer
- 1.3.73
-
-
- com.fasterxml.jackson.core
- jackson-annotations
- 2.12.3
+ 1.3.76
org.mongodb
@@ -109,60 +109,7 @@
-
-
-
- maven-clean-plugin
- 3.1.0
-
-
- maven-resources-plugin
- 3.2.0
-
-
- maven-surefire-plugin
- 2.22.2
-
-
- maven-jar-plugin
- 3.2.0
-
- Hadder-Build
-
-
- one.bbn.hadder.Hadder
-
-
-
-
-
- maven-install-plugin
- 2.5.2
-
-
- maven-deploy-plugin
- 2.8.2
-
-
- maven-site-plugin
- 3.9.1
-
-
- maven-project-info-reports-plugin
- 3.1.1
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- 3.8.1
-
- 15
- 15
-
-
maven-assembly-plugin
diff --git a/src/main/java/one/bbn/hadder/commands/music/VolumeCommand.java b/src/main/java/one/bbn/hadder/commands/music/VolumeCommand.java
index 077a3db..62a392e 100644
--- a/src/main/java/one/bbn/hadder/commands/music/VolumeCommand.java
+++ b/src/main/java/one/bbn/hadder/commands/music/VolumeCommand.java
@@ -19,7 +19,7 @@ package one.bbn.hadder.commands.music;
import one.bbn.hadder.commands.Command;
import one.bbn.hadder.commands.CommandEvent;
import one.bbn.hadder.utils.MessageEditor;
-import org.jsoup.internal.StringUtil;
+import org.codehaus.plexus.util.StringUtils;
public class VolumeCommand implements Command {
@@ -28,7 +28,7 @@ public class VolumeCommand implements Command {
if (args.length > 0) {
if (e.getAudioManager().hasPlayer(e.getGuild()) && e.getAudioManager().getPlayer(e.getGuild()).getPlayingTrack() != null) {
if (e.getMember().getVoiceState().inVoiceChannel() && e.getGuild().getSelfMember().getVoiceState().inVoiceChannel() && e.getGuild().getSelfMember().getVoiceState().getChannel().equals(e.getMember().getVoiceState().getChannel())) {
- if (StringUtil.isNumeric(args[0])) {
+ if (StringUtils.isNumeric(args[0])) {
int volume = Integer.parseInt(args[0]);
if (volume < 201 && volume > 0 || e.getConfig().getOwners().contains(e.getAuthor().getIdLong())) {
e.getAudioManager().getPlayer(e.getGuild()).setVolume(volume);