drawInfo error
Code
- public void drawInfo(Minecraft minecraft, int recipeWidth, int recipeHeight, int mouseX, int mouseY) {
- int space = true;
- int x = 5;
- minecraft.fontRenderer.drawSplitString(this.input, 42, x, recipeWidth - 42, 16777215);
- int x = x + minecraft.fontRenderer.getWordWrappedHeight(this.input, recipeWidth - 42) + 5;
- minecraft.fontRenderer.drawSplitString(this.output, 42, x, recipeWidth - 42, 16777215);
- x += minecraft.fontRenderer.getWordWrappedHeight(this.output, recipeWidth - 42) + 5;
- minecraft.fontRenderer.drawString(this.totalEU, 42, x, 16777215);
- }
- }