Skip to content

Commit

Permalink
Merge pull request #42 from SteamingMutt/Whois-updoot
Browse files Browse the repository at this point in the history
Little whois update
  • Loading branch information
Remco authored and Remco committed Feb 28, 2016
2 parents 744e06f + 3211019 commit c7a4924
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ Commands.whois = {
msgArray.push("Information requested by " + msg.sender);
msgArray.push("Requested user: `" + user.username + "`");
msgArray.push("ID: `" + user.id + "`");
msgArray.push("Discriminator: `#" + user.discriminator + "`");
msgArray.push("Status: `" + user.status + "`");
msgArray.push("Current access level: " + UserLevel);
bot.sendMessage(msg.channel, msgArray);
Expand All @@ -528,6 +529,7 @@ Commands.whois = {
msgArray.push("Information requested by " + msg.sender);
msgArray.push("Requested user: `" + user.username + "`");
msgArray.push("ID: `" + user.id + "`");
msgArray.push("Discriminator: `#" + user.discriminator + "`");
msgArray.push("Status: `" + user.status + "`");
msgArray.push("Avatar: " + user.avatarURL);
msgArray.push("Current access level: " + UserLevel);
Expand Down

0 comments on commit c7a4924

Please sign in to comment.