forked from SudhanPlayz/Discord-MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code reformatted, reordered entries, optimized imports (SudhanPlayz#946)
- Loading branch information
Showing
95 changed files
with
10,976 additions
and
3,773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# Seeking support? | ||
|
||
We only use this issue tracker for bug reports and feature request. We are not able to provide general support or answer questions in the form of GitHub issues. | ||
We only use this issue tracker for bug reports and feature request. We are not able to provide general support or answer | ||
questions in the form of GitHub issues. | ||
|
||
For general questions about the Music Bot and use please use the dedicated support channels in our Discord server: https://discord.gg/sbySMS7m3v | ||
For general questions about the Music Bot and use please use the dedicated support channels in our Discord | ||
server: https://discord.gg/sbySMS7m3v | ||
|
||
Any issues that don't directly involve a bug or a feature request will likely be closed and redirected. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
const { ContextMenuCommandBuilder } = require("@discordjs/builders"); | ||
|
||
module.exports = { | ||
command: new ContextMenuCommandBuilder().setName("Say Hello").setType(2), | ||
|
||
/** | ||
* This function will handle context menu interaction | ||
* @param {import("../lib/DiscordMusicBot")} client | ||
* @param {import("discord.js").GuildContextMenuInteraction} interaction | ||
*/ | ||
run: (client, interaction, options) => { | ||
interaction.reply(`<@${interaction.options.getUser("user").id}>, Hello!`); | ||
}, | ||
command: new ContextMenuCommandBuilder().setName("Say Hello").setType(2), | ||
/** | ||
* This function will handle context menu interaction | ||
* @param {import("../lib/DiscordMusicBot")} client | ||
* @param {import("discord.js").GuildContextMenuInteraction} interaction | ||
*/ | ||
run: (client, interaction, options) => { | ||
interaction.reply(`<@${ interaction.options.getUser("user").id }>, Hello!`); | ||
}, | ||
}; |
Oops, something went wrong.