diff --git a/src/client/java/net/vinrobot/mcemote/client/font/NativeImageGlyph.java b/src/client/java/net/vinrobot/mcemote/client/font/NativeImageGlyph.java index c88e640..3c9b298 100644 --- a/src/client/java/net/vinrobot/mcemote/client/font/NativeImageGlyph.java +++ b/src/client/java/net/vinrobot/mcemote/client/font/NativeImageGlyph.java @@ -51,4 +51,22 @@ public boolean hasColor() { public float getOversample() { return this.oversample; } + + @Override + public float getAdvance(boolean bold) { + // Bold is not supported + return this.getAdvance(); + } + + @Override + public float getBoldOffset() { + // Bold is not supported + return 0; + } + + @Override + public float getShadowOffset() { + // Shadow is not supported + return 0; + } }