Remove Bug command

This commit is contained in:
Christer Warén
2023-12-04 22:24:19 +02:00
parent c899266975
commit c0d0cf23dc
2 changed files with 1 additions and 36 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
import { Snowflake } from "discord.js";
import RadioClient from "../Client";
import bug from "./commands/bug";
import help from "./commands/help";
import invite from "./commands/invite";
import list from "./commands/list";
@@ -21,7 +20,7 @@ export interface command {
}
export default async function commands(client: RadioClient) {
const commands : command[] = [ bug, help, invite, list, maintenance, next, play, prev, statistics, status, stop ];
const commands : command[] = [ help, invite, list, maintenance, next, play, prev, statistics, status, stop ];
for(const command of commands){
client.commands.set(command.name, command);