From c9945ab84502585a41fbb91b2e1b1383d9a0d29a Mon Sep 17 00:00:00 2001 From: Phil Date: Fri, 8 Mar 2024 00:37:47 +0100 Subject: [PATCH] added notice in warn command --- commands/warn/add.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/warn/add.js b/commands/warn/add.js index 8e35b20..b35840e 100644 --- a/commands/warn/add.js +++ b/commands/warn/add.js @@ -10,7 +10,7 @@ module.exports.run = async (interaction, warnMessage, Warn, checkforInfectedGuil if (userID === client.user.id) return messageFail(interaction, 'You can\'t warn the bot itself!'); // add warn await addWarn(Warn, interaction.guild.id, userID, warnMessage); - messageSuccess(interaction, `The user with the ID \`${userID}\` got a new warning added.\n Warning other servers.`); + messageSuccess(interaction, `The user with the ID \`${userID}\` got a new warning added.\nWarning other servers.\nPlease keep in mind: The warning feature is not a way to reach out the user!`); checkforInfectedGuilds(interaction.guild, userID, warnMessage); };