From f228b4d8466b8e375cba635b4b1a97a04857f278 Mon Sep 17 00:00:00 2001 From: Hazmi35 Date: Mon, 22 Jun 2020 01:10:20 +0700 Subject: [PATCH] fix(PlayCommand): Fix grammars --- src/commands/PlayCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/PlayCommand.ts b/src/commands/PlayCommand.ts index 393860e3..5084705a 100644 --- a/src/commands/PlayCommand.ts +++ b/src/commands/PlayCommand.ts @@ -155,7 +155,7 @@ export default class PlayCommand extends BaseCommand { serverQueue.connection!.voice.setSelfDeaf(true); const SongData = await ytdl(song.url, { cache: this.client.config.cacheYoutubeDownloads }); - if (SongData.cache) this.client.log.info(`${this.client.shard ? `[Shard #${this.client.shard.ids}]` : ""} Using cache for ${song.title} for ${guild.name}`); + if (SongData.cache) this.client.log.info(`${this.client.shard ? `[Shard #${this.client.shard.ids}]` : ""} Using cache for song "${song.title}" on ${guild.name}`); serverQueue.connection!.play(SongData.stream, { type: SongData.canDemux ? "webm/opus" : "unknown",