Updated interfacecs
This commit is contained in:
@@ -6,7 +6,6 @@ import logToChannel from "utils/functions/logtochannel"
|
||||
export = {
|
||||
name: "logNewJoins",
|
||||
description: "Logs new joins",
|
||||
type: "event",
|
||||
event: "guildMemberAdd",
|
||||
|
||||
execute(member: GuildMember) {
|
||||
|
||||
@@ -5,7 +5,6 @@ import { Event } from "interfaces"
|
||||
export = {
|
||||
name: "logBtnsCmds",
|
||||
description: "Logs all button and command interactions",
|
||||
type: "event",
|
||||
event: "interactionCreate",
|
||||
|
||||
execute(interaction: ChatInputCommandInteraction | ButtonInteraction) {
|
||||
|
||||
@@ -5,7 +5,6 @@ import env from "utils/Env"
|
||||
export = {
|
||||
name: "eval",
|
||||
description: "Evaluate a JavaScript expression",
|
||||
type: "event",
|
||||
event: "messageCreate",
|
||||
disabled: true,
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ import { Message } from "discord.js"
|
||||
export = {
|
||||
name: "ur mom",
|
||||
description: "ur moms someone",
|
||||
type: "event",
|
||||
event: "messageCreate",
|
||||
|
||||
async execute(message: Message) {
|
||||
|
||||
@@ -7,7 +7,6 @@ import { SnipeCache } from "typings"
|
||||
export = {
|
||||
name: "snipecache",
|
||||
description: "Logs messages for the snipe command",
|
||||
type: "event",
|
||||
event: "messageDelete",
|
||||
disabled: true,
|
||||
|
||||
|
||||
@@ -5,7 +5,6 @@ import color from "utils/functions/colors"
|
||||
export = {
|
||||
name: "conolelog",
|
||||
description: "console log",
|
||||
type: "event",
|
||||
event: "ready",
|
||||
|
||||
execute(client: Client) {
|
||||
|
||||
@@ -5,7 +5,6 @@ import { color } from "config/options.json"
|
||||
export = {
|
||||
name: "sendonlinemessage",
|
||||
description: "send an online message",
|
||||
type: "event",
|
||||
event: "ready",
|
||||
|
||||
execute() {
|
||||
|
||||
@@ -5,7 +5,6 @@ import { ExtendedClient as Client } from "utils/Client"
|
||||
export = {
|
||||
name: "status",
|
||||
description: "Sets the status of the bot",
|
||||
type: "event",
|
||||
event: "ready",
|
||||
|
||||
execute(client: Client) {
|
||||
|
||||
@@ -6,7 +6,6 @@ import logToChannel from "utils/functions/logtochannel"
|
||||
export = {
|
||||
name: "vcJoinLeave",
|
||||
description: "Logs when a user joins or leaves a voice channel.",
|
||||
type: "event",
|
||||
event: "voiceStateUpdate",
|
||||
|
||||
execute(oldState: VoiceState, newState: VoiceState) {
|
||||
|
||||
Reference in New Issue
Block a user