[FIX] NPE with profile.verify

This commit is contained in:
Gravita 2025-06-29 05:38:03 +07:00
parent 26c21a3ec7
commit 8421da7772

View file

@ -297,6 +297,9 @@ public UUID getUUID() {
@Override
public String getMinecraftVersion() {
if(version == null) {
return null;
}
return version.toString();
}