diff --git a/src/index.ts b/src/index.ts index 77e09ed..f36b246 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,7 @@ import { Client, Message } from "revolt.js"; import { commandHandler } from "./utils/commandHandler" import { nonCommandHandler } from "./utils/nonCommandHandler" import config from "../config.json" -const client : Client = new Client(); +const client : Client = new Client({ eagerFetching: false }); client.on("ready", async () => { diff --git a/src/models/alterModel.ts~ b/src/models/alterModel.ts~ deleted file mode 100644 index 1dacc0d..0000000 --- a/src/models/alterModel.ts~ +++ /dev/null @@ -1,7 +0,0 @@ -export interface AlterModel { - id?: number; - owner: string; - prefix: string; - name: string; - profile_pic_url: string; -}