Skip to content

Commit

Permalink
Fix Idle Count ( #24 )
Browse files Browse the repository at this point in the history
  • Loading branch information
LoboMetalurgico committed Aug 11, 2020
1 parent 6d9d372 commit 1040ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/serverinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ exports.run = async (aruna, message) => {
`${status['online']}: ${
message.guild.members.filter(m => m.presence.status === 'online').size
}\n${status['idle']}: ${
message.guild.members.filter(m => m.presence.status === 'away').size
message.guild.members.filter(m => m.presence.status === 'idle').size
}\n${status['dnd']}: ${
message.guild.members.filter(m => m.presence.status === 'dnd').size
}\n${status['offline']}: ${
Expand Down

0 comments on commit 1040ca0

Please sign in to comment.