Skip to content
This repository has been archived by the owner on Oct 18, 2021. It is now read-only.

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
zekroTJA committed Aug 3, 2017
1 parent e71f1d9 commit 508c94b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/commands/administration/Guilds.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void action(String[] args, MessageReceivedEvent event) throws ParseExcept
event.getJDA().getGuilds().stream()
.sorted(Comparator.comparingInt(s -> s.getMembers().size()))
.forEach(g -> sb.append(
"*[" + g.getMembers().size() + "]* - **" + g.getName() + "** - `" + g.getId() + "\n"
"*[" + g.getMembers().size() + "]* - **" + g.getName() + "** - `" + g.getId() + "`\n"
));

if (sb.toString().length() > 2000)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/utils/STATICS.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class STATICS {
//######### GENERAL BOT SETTINGS #########//


public static String VERSION = "1.33.3.0";
public static String VERSION = "1.33.3.1";
public static String THISBUILD = BUILDTYPE.STABLE;

public static class BUILDTYPE {
Expand Down

0 comments on commit 508c94b

Please sign in to comment.