Skip to content

Commit

Permalink
Fix values on CapeProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
rtm516 authored May 16, 2024
1 parent b6e2567 commit 3ec2aa3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public enum CapeProvider {
LABYMOD("https://dl.labymod.net/capes/%s", UrlType.UUID_DASHED),
MINECRAFTCAPES("https://api.minecraftcapes.net/profile/%s/cape", UrlType.UUID);

public static final CapeProvider[] VALUES = Arrays.copyOfRange(values(), 1, 5);
public static final CapeProvider[] VALUES = values();
private String url;
private UrlType type;

Expand Down

0 comments on commit 3ec2aa3

Please sign in to comment.