Fix avatar type values

This commit is contained in:
KingRainbow44
2023-04-18 16:01:29 -04:00
parent de0217f435
commit 75f163f704

View File

@@ -1298,8 +1298,8 @@ public class Avatar {
@AllArgsConstructor
@Getter
enum Type {
NORMAL(0),
TRIAL(1);
NORMAL(1),
TRIAL(2);
final int number;
}