(Actually) fix offline mode skins

This commit is contained in:
RednedEpic 2019-11-27 21:22:27 -06:00
parent 0e7fff0b9b
commit ee4a01e304
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ public class SkinUtils {
Geyser.getLogger().debug("Got invalid texture data for " + profile.getName() + " " + exception.getMessage());
}
// return default skin with default cape when texture data is invalid
return new GameProfileData("", "", false);
return new GameProfileData(SkinProvider.EMPTY_SKIN.getTextureUrl(), SkinProvider.EMPTY_CAPE.getTextureUrl(), false);
}
}
}