Stop deleting the emote invocation.

This commit is contained in:
Keanu Timmermans 2021-03-07 22:07:59 +01:00
parent 22bd5302c5
commit cec38cf4bd
1 changed files with 0 additions and 1 deletions

View File

@ -12,7 +12,6 @@ export default new Command({
async run({guild, channel, message, args}) {
let output = "";
for (const query of args) output += queryClosestEmoteByName(query).toString();
if (botHasPermission(guild, Permissions.FLAGS.MANAGE_MESSAGES)) message.delete();
channel.send(output);
}
})