Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: make text where command is referenced bold
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Jul 16, 2023
1 parent 4e994c0 commit de84385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = {
});
}

queueString = 'The queue is empty, add some tracks with `/play`!';
queueString = 'The queue is empty, add some tracks with **`/play`**!';
return await interaction.editReply({
embeds: [
new EmbedBuilder()
Expand Down Expand Up @@ -86,7 +86,7 @@ module.exports = {
}

if (queue.tracks.data.length === 0) {
queueString = 'The queue is empty, add some tracks with `/play`!';
queueString = 'The queue is empty, add some tracks with **`/play`**!';
} else {
queueString = queue.tracks.data
.slice(pageIndex * 10, pageIndex * 10 + 10)
Expand Down

0 comments on commit de84385

Please # to comment.