summaryrefslogtreecommitdiff
path: root/src/commands/bot/servercount.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/bot/servercount.ts')
-rw-r--r--src/commands/bot/servercount.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/bot/servercount.ts b/src/commands/bot/servercount.ts
index 49fcc5c..84fdaae 100644
--- a/src/commands/bot/servercount.ts
+++ b/src/commands/bot/servercount.ts
@@ -16,14 +16,14 @@ module.exports = class ServerCountServer 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(`Currently running on ${this.client.guilds.cache.size} server(s). ` + emoji.random())
.setColor(0xFFCC4D)
- msg.channel.send(emb);
+ msg.say(emb);
});
}
}; \ No newline at end of file