From bda277d3691e54b8a3af01e697f80a3aa55f4668 Mon Sep 17 00:00:00 2001 From: Vinrobot Date: Tue, 18 Jul 2023 01:18:20 +0200 Subject: [PATCH] Reduce glyph height --- .../java/net/vinrobot/mcemote/client/font/EmoteFontStorage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/java/net/vinrobot/mcemote/client/font/EmoteFontStorage.java b/src/client/java/net/vinrobot/mcemote/client/font/EmoteFontStorage.java index 15bc50c..2e2bb07 100644 --- a/src/client/java/net/vinrobot/mcemote/client/font/EmoteFontStorage.java +++ b/src/client/java/net/vinrobot/mcemote/client/font/EmoteFontStorage.java @@ -23,7 +23,7 @@ @Environment(EnvType.CLIENT) public class EmoteFontStorage extends FontStorage { public static final Identifier IDENTIFIER = new Identifier("mcemote.fonts", "emotes"); - public static final float GLYPH_HEIGHT = 9; + public static final float GLYPH_HEIGHT = 8; private final EmotesManager emotesManager; private final Map> framesCache = new HashMap<>();