Update FpsGraphComponent.java

fixed FPSGraph hud component being labled "(movement)" until in game
This commit is contained in:
prof 2023-07-31 19:04:32 -05:00 committed by GitHub
parent db52ae0000
commit e3ba19d1c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public final class FpsGraphComponent extends ResizableHudComponent {
// border
RenderUtil.drawBorderedRectBlurred(this.getX(), this.getY(), this.getX() + this.getW(), this.getY() + this.getH(), 2.0f, 0x00000000, 0x90101010);
} else {
mc.fontRenderer.drawStringWithShadow("(movement)", this.getX(), this.getY(), 0xFFAAAAAA);
mc.fontRenderer.drawStringWithShadow("(fps graph)", this.getX(), this.getY(), 0xFFAAAAAA);
}
}