MinecraftForge/ForgeFlower

Super calls on interfaces are not properly qualified.

LexManos opened this issue · 1 comments

See 1.13.1 TextureGlyphProvider$GlyphInfo.getBearingY

      public float getBearingY() {
         return super.getBearingY() + 7.0F - (float)this.field_211589_h;
      }

Should be

      public float getBearingY() {
         return IGlyphInfo.super.getBearingY() + 7.0F - (float)this.field_211589_h;
      }

This has been fixed upstream.