diff --git a/src/main/java/com/donek/projectRias/commands/Music/NowPlayingCommand.java b/src/main/java/com/donek/projectRias/commands/Music/NowPlayingCommand.java index d1e0691..159ac1e 100644 --- a/src/main/java/com/donek/projectRias/commands/Music/NowPlayingCommand.java +++ b/src/main/java/com/donek/projectRias/commands/Music/NowPlayingCommand.java @@ -40,13 +40,13 @@ public void onSlashCommandInteraction(SlashCommandInteractionEvent event) { final AudioTrack track = audioPlayer.getPlayingTrack(); if (track == null) { - event.getHook().sendMessage("Сейчас ничего не проигрывается").queue(); + event.getHook().sendMessage("Nothing is playing now").queue(); return; } final AudioTrackInfo info = track.getInfo(); - event.getHook().sendMessageFormat("Сейчас проигрывается: `%s` by `%s` (Link: <%s>)", info.title, info.author, info.uri).queue(); + event.getHook().sendMessageFormat("Now playing: `%s` by `%s` (Link: <%s>)", info.title, info.author, info.uri).queue(); } } }