Skip to content

Commit

Permalink
fix: forgor import
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Oct 18, 2023
1 parent 04dba5c commit c656bcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ import { ActivityType, Client } from "discord.js";

import chalk from "chalk";

import { Emu } from "./commands/emu.js";
import { MaoCommander } from "./commands/index.js";
import { environment } from "./environment.js";
import { clients } from "./slave.js";

const MaoClient = new Client(new CocoaIntent().useGuild());

const center = new SlashCenter(MaoClient, "Global");
center.addModules(new MaoCommander(MaoClient));
center.addModules(new MaoCommander(MaoClient), new Emu());
center.validateCommands();

MaoClient.on("ready", (cli) => {
Expand Down

0 comments on commit c656bcd

Please sign in to comment.