summaryrefslogtreecommitdiff
path: root/src/commands/bot/version.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/bot/version.ts')
-rw-r--r--src/commands/bot/version.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/bot/version.ts b/src/commands/bot/version.ts
index 7d2c71b..01119dc 100644
--- a/src/commands/bot/version.ts
+++ b/src/commands/bot/version.ts
@@ -22,14 +22,14 @@ export default class VersionBot extends Command {
});
}
run(msg: CommandoMessage) {
- msg.channel.send('Please wait...').then(m => {
+ msg.say('Please wait...').then(m => {
m.edit(`** **`);
let emb = new MessageEmbed()
.setDescription(`uwufier\'s current build version is **v${config['version']}**. ` + emoji.random())
.setColor(0xFFCC4D)
- msg.channel.send(emb);
+ msg.say(emb);
});
}
} \ No newline at end of file