Typo on operator (woops)

This commit is contained in:
Venal
2017-07-28 13:06:46 -04:00
parent 1ebe1bc2e2
commit 72304bb14c
2 changed files with 17 additions and 10 deletions

View File

@@ -219,7 +219,7 @@ public class MusicCommand implements CommandExec {
if(message[1].equalsIgnoreCase("join")) {
VoiceChannel chan = null;
StringBuilder stringBuilder = new StringBuilder();
for (int i = 2; i < message.length; i++) {
for (int i = 2; i != message.length; i++) {
stringBuilder.append(message[i]).append(" ");
}
String channelName = stringBuilder.toString();