Update from Git Manager GUI

This commit is contained in:
2026-02-25 18:51:11 +01:00
parent 1567151fce
commit 7dba3a8db8
4 changed files with 202 additions and 0 deletions

12
events/botping.js Normal file
View File

@@ -0,0 +1,12 @@
export default {
name: "messageCreate",
async execute(client, message) {
if (message.author?.bot) return;
if (!message.mentions.users.has(client.bot.user.id)) return;
message.channel.send(
`<@${message.author.id}> Für Informationen, tippe \`${client.config.prefix}help\``
);
},
};