1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2025-12-28 03:09:21 +00:00

Fix default font width for accented

This commit is contained in:
Aurora
2025-07-16 21:35:56 +01:00
parent 9bb220ef05
commit c6c7cebe8d

View File

@@ -73,7 +73,7 @@ public class FontTransformer implements TextureTransformer {
if (accented != null) {
BufferedImage image = this.readImage(accented);
imgs.put("accented", image);
scales.put("accented", image.getWidth() / 128);
scales.put("accented", image.getWidth() / 144);
}
Texture nonlatin_european = context.pollOrPeekVanilla(Key.key(Key.MINECRAFT_NAMESPACE, "font/nonlatin_european.png"));