Skip to content

Commit 41e9ba4

Browse files
committed
updated discord token
1 parent 7c1d41b commit 41e9ba4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
/node_modules
1+
/node_modules
2+
settings.js

main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const Discord = require("discord.js");
22
const { createEmbed } = require("./utils/embed");
33
const { searchName, nameHistory, checkStatus, badges, skin } = require("./utils/checks");
4+
const settings = require("./settings.js");
45

56
const BOT = new Discord.Client({ intents: [Discord.Intents.FLAGS.GUILDS, Discord.Intents.FLAGS.GUILD_MESSAGES] });
67

@@ -192,4 +193,4 @@ BOT.on("messageCreate", (message) => {
192193
}
193194
});
194195

195-
BOT.login("OTM4NDc1ODM5MjQ5NjA0NjA5.Yfq1vA.aoSlipXQ1ZgAbaW2KDBieUSihXA");
196+
BOT.login(settings.token);

0 commit comments

Comments
 (0)