We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c27299 commit 3e196ddCopy full SHA for 3e196dd
src/handlers/lvl.ts
src/index.ts
@@ -1,7 +1,6 @@
1
import { deployCommands } from "./deploy";
2
import { setPresence } from "./presence";
3
import { handleCommand } from "./handlers/command";
4
-import { handleLevel } from "./handlers/lvl";
5
import { Client, GatewayIntentBits, EmbedBuilder } from "discord.js";
6
7
const client = new Client({
@@ -48,7 +47,6 @@ client.on("interactionCreate", async (interaction) => {
48
47
client.on("messageCreate", async (message) => {
49
if (message.author.bot) return;
50
console.log("Received message!");
51
- await handleLevel(message);
52
});
53
54
client.on("guildCreate", async (guild) => {});
0 commit comments