Update Packages & Ban Log Info
This commit is contained in:
SDCore 2026-05-25 23:06:30 -05:00 committed by GitHub
commit 4e0779f5a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 11 deletions

12
package-lock.json generated
View file

@ -1,16 +1,16 @@
{ {
"name": "lucy_watchcat", "name": "lucy_watchcat",
"version": "0.0.2", "version": "0.0.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "lucy_watchcat", "name": "lucy_watchcat",
"version": "0.0.2", "version": "0.0.3",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chalk": "^4.1.2", "chalk": "^4.1.2",
"discord.js": "^14.26.3", "discord.js": "^14.26.4",
"dotenv": "^17.4.2" "dotenv": "^17.4.2"
} }
}, },
@ -274,9 +274,9 @@
] ]
}, },
"node_modules/discord.js": { "node_modules/discord.js": {
"version": "14.26.3", "version": "14.26.4",
"resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.26.3.tgz", "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-14.26.4.tgz",
"integrity": "sha512-XEKtYn28YFsiJ5l4fLRyikdbo6RD5oFyqfVHQlvXz2104JhH/E8slN28dbky05w3DCrJcNVWvhVvcJCTSl/KIg==", "integrity": "sha512-4oBp8tc6Kf8IDBwAHhbsMaAqx1b5fob9SNasZT7V6yyyUydoO5i5fGuX7TmvRtR+q/WgKRnRViRoAWnG7fNyvA==",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@discordjs/builders": "^1.14.1", "@discordjs/builders": "^1.14.1",

View file

@ -1,6 +1,6 @@
{ {
"name": "lucy_watchcat", "name": "lucy_watchcat",
"version": "0.0.2", "version": "0.0.3",
"description": "", "description": "",
"license": "ISC", "license": "ISC",
"author": "", "author": "",
@ -11,7 +11,7 @@
}, },
"dependencies": { "dependencies": {
"chalk": "^4.1.2", "chalk": "^4.1.2",
"discord.js": "^14.26.3", "discord.js": "^14.26.4",
"dotenv": "^17.4.2" "dotenv": "^17.4.2"
} }
} }

View file

@ -17,7 +17,8 @@ module.exports = {
if (channelID !== banChannelID) return; if (channelID !== banChannelID) return;
// Ban user if they type in the channel // Ban user if they type in the channel
await message.member.ban({ reason: `Likely bot, typed in <#${process.env.DONT_TYPE_HERE_CHANNEL}>`, deleteMessageSeconds: 60 * 60 * 24 }); await message.member.ban({ reason: `Likely bot, typed in honeypot channel.`, deleteMessageSeconds: 60 * 60 * 24 });
await banLogChannel.send(`User <@${message.author.id}> has been banned for typing in <#${process.env.DONT_TYPE_HERE_CHANNEL}>.`); await banLogChannel.send(`User <@${message.author.id}> has been banned for typing in <#${process.env.DONT_TYPE_HERE_CHANNEL}>.\nMessage: \`${message.content}\``);
console.log(`${chalk.red.bold('[WatchCat]')} User ${message.author.tag} (${message.author.id}) has been banned for typing in the honeypot channel`);
}, },
}; };

View file

@ -5,7 +5,7 @@ const { Client, GatewayIntentBits } = require('discord.js');
dotenv.config({ quiet: true }); dotenv.config({ quiet: true });
const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers] }); const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers, GatewayIntentBits.MessageContent] });
client client
.login(process.env.DISCORD_TOKEN) .login(process.env.DISCORD_TOKEN)