diff options
Diffstat (limited to 'server/src/commands/util/Help.ts')
| -rw-r--r-- | server/src/commands/util/Help.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/commands/util/Help.ts b/server/src/commands/util/Help.ts index 76d2bf6..15549d5 100644 --- a/server/src/commands/util/Help.ts +++ b/server/src/commands/util/Help.ts @@ -92,7 +92,7 @@ export default class HelpUtil extends Command { } if (msg.channel.type === 'dm') return msg.author.send({ embed }); - return msg.reply('sending you a DM with information...').then(async m => { + return msg.reply('Sending you a DM with information...').then(async m => { await msg.author.send({ embed }); m.edit('I\'ve send you a DM with information!'); }); |