@@ -58,11 +58,11 @@ function createNowPlayingContainer(track, player, guildData, musicardBuffer) {
5858 // --- Status: Autoplay / Loop / Volume ---
5959 container . addTextDisplayComponents (
6060 new TextDisplayBuilder ( ) . setContent (
61- "**Autoplay**\n " +
62- `-# ${ guildData . autoplay ? "On" : "Off" } \n\n ` +
63- "**Loop**\n " +
64- `-# ${ capitalize ( guildData . loop ) } \n\n ` +
65- "**Volume**\n " +
61+ "**Autoplay**" +
62+ `-# ${ guildData . autoplay ? "On" : "Off" } ` +
63+ "**Loop**" +
64+ `-# ${ capitalize ( guildData . loop ) } ` +
65+ "**Volume**" +
6666 `-# ${ guildData . volume } %`
6767 )
6868 ) ;
@@ -72,7 +72,7 @@ function createNowPlayingContainer(track, player, guildData, musicardBuffer) {
7272
7373 // --- Next on Deck ---
7474 const queue = player . queue ;
75- let nextContent = "**Next on Deck**\n\n " ;
75+ let nextContent = "**Next on Deck**\n" ;
7676 if ( queue && queue . length > 0 ) {
7777 const upcoming = queue . slice ( 0 , 3 ) ;
7878 for ( let i = 0 ; i < upcoming . length ; i ++ ) {
@@ -265,11 +265,11 @@ function createChatPlayNowPlayingContainer(track, player, guildData, musicardBuf
265265 // --- Status: Autoplay / Loop / Volume ---
266266 container . addTextDisplayComponents (
267267 new TextDisplayBuilder ( ) . setContent (
268- "**Autoplay**\n " +
269- `-# ${ guildData . autoplay ? "On" : "Off" } \n\n ` +
270- "**Loop**\n " +
271- `-# ${ capitalize ( guildData . loop ) } \n\n ` +
272- "**Volume**\n " +
268+ "**Autoplay**" +
269+ `-# ${ guildData . autoplay ? "On" : "Off" } ` +
270+ "**Loop**" +
271+ `-# ${ capitalize ( guildData . loop ) } ` +
272+ "**Volume**" +
273273 `-# ${ guildData . volume } %`
274274 )
275275 ) ;
@@ -279,7 +279,7 @@ function createChatPlayNowPlayingContainer(track, player, guildData, musicardBuf
279279
280280 // --- Next on Deck ---
281281 const queue = player . queue ;
282- let nextContent = "**Next on Deck**\n\n " ;
282+ let nextContent = "**Next on Deck**\n" ;
283283 if ( queue && queue . length > 0 ) {
284284 const upcoming = queue . slice ( 0 , 3 ) ;
285285 for ( let i = 0 ; i < upcoming . length ; i ++ ) {
0 commit comments