Skip to content

Commit

Permalink
fix user count in group message
Browse files Browse the repository at this point in the history
  • Loading branch information
weaondara committed Apr 18, 2021
1 parent 4b96da3 commit fae9e40
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1781,7 +1781,7 @@ else if (args.length == 4)
return false;
}
List<String> users = pm().getGroupUsers(group);
sender.sendMessage(Lang.translate(MessageType.GROUP_USERS_HEADER, users.size(), group.getName()));
sender.sendMessage(Lang.translate(MessageType.GROUP_USERS_HEADER_COUNT, users.size(), group.getName()));
return true;
}
return true;
Expand Down

0 comments on commit fae9e40

Please sign in to comment.