Made GenericRecipeHandler more generic

This commit is contained in:
joflashstudios 2015-06-25 22:43:40 -04:00
parent 338575d56d
commit 8814c1b9d2

View file

@ -79,8 +79,8 @@ public abstract class GenericRecipeHander extends TemplateRecipeHandler {
float scale = 0.9F;
GL11.glScalef(scale, scale, scale);
GuiDraw.drawString("EU needed: " + (ConfigTechReborn.CentrifugeInputTick * genericRecipe.recipie.tickTime()), 16, 105, -1);
GuiDraw.drawString("Ticks to smelt: "+ genericRecipe.recipie.tickTime(), 14, 115, -1);
GuiDraw.drawString("Time to smelt: " + genericRecipe.recipie.tickTime() / 20 + " seconds", 14, 125, -1);
GuiDraw.drawString("Ticks to process: "+ genericRecipe.recipie.tickTime(), 14, 115, -1);
GuiDraw.drawString("Time to process: " + genericRecipe.recipie.tickTime() / 20 + " seconds", 14, 125, -1);
}
}