view a list of armbands

This commit is contained in:
SowinskiBraeden committed 2022-12-07 14:30:12 -08:00
1 parent 8cbb3efd12
commit ed0dea4572
3 files changed
+84 -6

No files matched your search

+27
View File
@@ -0,0 +1,27 @@
const { ModalBuilder, ActionRowBuilder } = require('discord.js');
module.exports = {
name: "factions",
debug: false,
global: false,
description: "view the armband of a faction",
usage: "[cmd] [opts]",
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) => {
},
},
Interactions: {}
}