Skip to content

Commit

Permalink
fix(dump): don't mention in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobiah committed Apr 30, 2020
1 parent f42c454 commit 4f5e99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/Utilities/Dump.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Dump extends Command {
for (const token of tokens) {
switch (token.type) {
case 'text':
await target.send(token.content);
await target.send(token.content, { allowedMentions: { parse: [] } });
break;
case 'img':
await target.send({
Expand Down

0 comments on commit 4f5e99d

Please sign in to comment.