Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Java/src/main/java/net/hypixel/api/reply/GuildReply.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public static class Guild {
private String name;
private String description;
private String tag;
private String tagColor;
private Boolean publiclyListed;
private Banner banner;
private List<Member> members;
Expand All @@ -52,6 +53,10 @@ public String getTag() {
return tag;
}

public String getTagColor() {
return tagColor;
}

public Boolean getPubliclyListed() {
return publiclyListed;
}
Expand Down Expand Up @@ -95,6 +100,7 @@ public String toString() {
", name='" + name + '\'' +
", description='" + description + '\'' +
", tag='" + tag + '\'' +
", tagColor='" + tagColor + '\'' +
", publiclyListed=" + publiclyListed +
", banner=" + banner +
", members=" + members +
Expand Down