mirror of
https://github.com/MrUnknownDE/UnknownAI.git
synced 2026-04-23 00:13:45 +02:00
huch?
This commit is contained in:
11
player/searchResults.js
Normal file
11
player/searchResults.js
Normal file
@@ -0,0 +1,11 @@
|
||||
module.exports = (client, message, query, tracks) => {
|
||||
message.channel.send({
|
||||
embed: {
|
||||
color: 'BLUE',
|
||||
author: { name: `Here are your search results for ${query}` },
|
||||
footer: { text: 'This bot uses a Github project made by Zerio (ZerioDev/Music-bot)' },
|
||||
timestamp: new Date(),
|
||||
description: `${tracks.map((t, i) => `**${i + 1}** - ${t.title}`).join('\n')}`,
|
||||
},
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user