From e1eac7232420d34bf7c347a9e3d49e75a7399cae Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 9 Sep 2023 15:10:34 +0200 Subject: Fix some skulls not being properly reskinned [no changelog] --- src/main/kotlin/moe/nea/firmament/util/item/SkullItemData.kt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/moe/nea/firmament/util/item/SkullItemData.kt b/src/main/kotlin/moe/nea/firmament/util/item/SkullItemData.kt index 4d4d386..39088ec 100644 --- a/src/main/kotlin/moe/nea/firmament/util/item/SkullItemData.kt +++ b/src/main/kotlin/moe/nea/firmament/util/item/SkullItemData.kt @@ -47,14 +47,18 @@ fun GameProfile.setTextures(textures: MinecraftTexturesPayloadKt) { fun decodeProfileTextureProperty(property: Property): MinecraftTexturesPayloadKt? { assertTrueOr(property.name == PlayerSkinProvider.TEXTURES) { return null } - try { - val json = java.util.Base64.getDecoder().decode(property.value).decodeToString() - return Firmament.json.decodeFromString(json) + return try { + var encodedF: String = property.value + while (encodedF.length % 4 != 0 && encodedF.last() == '=') { + encodedF = encodedF.substring(0, encodedF.length - 1) + } + val json = java.util.Base64.getDecoder().decode(encodedF).decodeToString() + Firmament.json.decodeFromString(json) } catch (e: Exception) { // Malformed profile data if (Firmament.DEBUG) e.printStackTrace() - return null + null } } -- cgit