4.7.2.1 dev version 1 collect logs
This commit is contained in:
6 files changed
+221
-7
No files matched your search
@@ -0,0 +1,29 @@
|
||||
const { EmbedBuilder } = require('discord.js');
|
||||
|
||||
module.exports = {
|
||||
name: "debug",
|
||||
debug: true,
|
||||
global: true,
|
||||
description: "debug",
|
||||
usage: "",
|
||||
permissions: {
|
||||
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
|
||||
member: [],
|
||||
},
|
||||
options: [],
|
||||
SlashCommand: {
|
||||
/**
|
||||
*
|
||||
* @param {require("../structures/QuarksBot")} client
|
||||
* @param {import("discord.js").Message} message
|
||||
* @param {string[]} args
|
||||
* @param {*} param3
|
||||
*/
|
||||
run: async (client, interaction, args, { GuildDB }, start) => {
|
||||
|
||||
client.updateLogs()
|
||||
|
||||
return interaction.send({ content: 'debugging...' })
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in new issue
Block a user