Skip to content

Commit 4e69586

Browse files
authored
Make guild tag color accessible (#245)
1 parent a60f273 commit 4e69586

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Java/src/main/java/net/hypixel/api/reply/GuildReply.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public static class Guild {
2626
private String name;
2727
private String description;
2828
private String tag;
29+
private String tagColor;
2930
private Boolean publiclyListed;
3031
private Banner banner;
3132
private List<Member> members;
@@ -52,6 +53,10 @@ public String getTag() {
5253
return tag;
5354
}
5455

56+
public String getTagColor() {
57+
return tagColor;
58+
}
59+
5560
public Boolean getPubliclyListed() {
5661
return publiclyListed;
5762
}
@@ -95,6 +100,7 @@ public String toString() {
95100
", name='" + name + '\'' +
96101
", description='" + description + '\'' +
97102
", tag='" + tag + '\'' +
103+
", tagColor='" + tagColor + '\'' +
98104
", publiclyListed=" + publiclyListed +
99105
", banner=" + banner +
100106
", members=" + members +

0 commit comments

Comments
 (0)