diff options
| author | 8cy <[email protected]> | 2020-04-10 11:47:50 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-10 11:47:50 -0700 |
| commit | b89247135684b52e3a23266327e7bea35f4b2592 (patch) | |
| tree | f56910aff48789a458f8d68092ea75fe553bfc14 /commands/utility | |
| parent | cool update :D, v2.0.2 (diff) | |
| download | s5nical-b89247135684b52e3a23266327e7bea35f4b2592.tar.xz s5nical-b89247135684b52e3a23266327e7bea35f4b2592.zip | |
spaces between emoji, v2.0.3
Diffstat (limited to 'commands/utility')
| -rw-r--r-- | commands/utility/clear.js | 2 | ||||
| -rw-r--r-- | commands/utility/membercount.js | 2 | ||||
| -rw-r--r-- | commands/utility/reboot.js | 6 | ||||
| -rw-r--r-- | commands/utility/uptime.js | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/commands/utility/clear.js b/commands/utility/clear.js index 204581f..0abcdac 100644 --- a/commands/utility/clear.js +++ b/commands/utility/clear.js @@ -52,7 +52,7 @@ module.exports = class ClearUtility extends Command { }).then(messages => { // I am on v11 discord.js msg.channel.bulkDelete(messages); }); - msg.reply('it\'s been deleted ~uwu' + emoji.random()).then(deleteNotificationMessage => { + msg.reply('it\'s been deleted ~uwu ' + emoji.random()).then(deleteNotificationMessage => { deleteNotificationMessage.delete({ timeout: 1000 }); }); } diff --git a/commands/utility/membercount.js b/commands/utility/membercount.js index 9690296..51b4067 100644 --- a/commands/utility/membercount.js +++ b/commands/utility/membercount.js @@ -17,6 +17,6 @@ module.exports = class MemberCountUtility extends Command { }); } run(msg) { - msg.reply(`there are **${msg.guild.memberCount}** members in **${msg.guild.name}**` + emoji.random()); + msg.reply(`there are **${msg.guild.memberCount}** members in **${msg.guild.name}** ` + emoji.random()); } };
\ No newline at end of file diff --git a/commands/utility/reboot.js b/commands/utility/reboot.js index 931f0db..2e104f6 100644 --- a/commands/utility/reboot.js +++ b/commands/utility/reboot.js @@ -26,14 +26,14 @@ module.exports = class RebootUtility extends Command { } else if (!msg.guild.voice) { msg.member.voice.channel.join(); msg.member.voice.channel.leave(); - msg.reply('voice module reboot finished lol' + emoji.random()); + msg.reply('voice module reboot finished lol ' + emoji.random()); } else if (msg.guild.voice) { msg.member.voice.channel.leave(); msg.member.voice.channel.join(); - msg.reply('voice module reboot finished lol' + emoji.random()); + msg.reply('voice module reboot finished lol ' + emoji.random()); } } else if (module == 'commands' || module == 'commands' || module == 'cmds' || module == 'cmd' || module == 'c') { - msg.reply('commands module reboot finished lol' + emoji.random()); + msg.reply('commands module reboot finished lol ' + emoji.random()); } else if (!args.length) { msg.reply('no module(s) specified'); } diff --git a/commands/utility/uptime.js b/commands/utility/uptime.js index 4643295..93be578 100644 --- a/commands/utility/uptime.js +++ b/commands/utility/uptime.js @@ -20,6 +20,6 @@ module.exports = class UptimeUtility extends Command { } run(msg) { const duration = upTime.duration(this.client.uptime).format(" D [days], H [hrs], m [mins], s [secs]"); - msg.reply(duration + emoji.random()); + msg.reply(duration + ' ' + emoji.random()); } };
\ No newline at end of file |