Fixed /skip command

This commit is contained in:
TiddyT 2022-05-16 17:05:30 -05:00
parent 43201fdac4
commit afe5323ae8

View file

@ -140,7 +140,7 @@ public class MusicCommand extends CommandClass {
e.getHook().sendMessage("\u23E9 Skipping current track.").queue();
} else {
info.addSkip(e.getUser());
e.getHook().sendMessage("**" + info.getAuthor().getUser().getName() + "** voted to skip the track. [" + (votes + 1) + "/4").queue();
e.getHook().sendMessage("**" + e.getUser().getName() + "** voted to skip the track. [" + (votes + 1) + "/4").queue();
}
}
}