String Changes, Don't register tons of defaults

This commit is contained in:
Daniel Odendahl Jr
2017-04-05 17:27:31 +00:00
parent f380a3ecbd
commit 332016ca5d
75 changed files with 225 additions and 265 deletions
+10 -10
View File
@@ -14,8 +14,8 @@ module.exports = class UserInfoCommand extends commando.Command {
],
group: 'userinfo',
memberName: 'user',
description: "Gives some info on a user. (;user @User)",
examples: [";user @User"],
description: 'Gives some info on a user. (;user @User)',
examples: [';user @User'],
guildOnly: true,
args: [{
key: 'user',
@@ -34,20 +34,20 @@ module.exports = class UserInfoCommand extends commando.Command {
let stat;
let color;
switch (user.presence.status) {
case "online":
stat = "<:vpOnline:212789758110334977> Online";
case 'online':
stat = '<:vpOnline:212789758110334977> Online';
color = 0x00AE86;
break;
case "idle":
stat = "<:vpAway:212789859071426561> Idle";
case 'idle':
stat = '<:vpAway:212789859071426561> Idle';
color = 0xFFFF00;
break;
case "dnd":
stat = "<:vpDnD:230093576355184640> Do Not Disturb";
case 'dnd':
stat = '<:vpDnD:230093576355184640> Do Not Disturb';
color = 0xFF0000;
break;
case "offline":
stat = "<:vpOffline:212790005943369728> Offline";
case 'offline':
stat = '<:vpOffline:212790005943369728> Offline';
color = 0x808080;
break;
}