(Actually) fix offline mode skins

This commit is contained in:
RednedEpic 2019-11-27 21:22:27 -06:00
parent 0e7fff0b9b
commit ee4a01e304

View file

@ -100,7 +100,7 @@ public class SkinUtils {
Geyser.getLogger().debug("Got invalid texture data for " + profile.getName() + " " + exception.getMessage()); Geyser.getLogger().debug("Got invalid texture data for " + profile.getName() + " " + exception.getMessage());
} }
// return default skin with default cape when texture data is invalid // 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);
} }
} }
} }