Update from Git Manager GUI
This commit is contained in:
12
events/botping.js
Normal file
12
events/botping.js
Normal 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\``
|
||||
);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user