Fix avatar type values

This commit is contained in:
KingRainbow44 2023-04-18 16:01:29 -04:00
parent de0217f435
commit 75f163f704
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE

View File

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