fixed #52
This commit is contained in:
parent
0b3736f639
commit
66ce8d3a47
1 changed files with 1 additions and 2 deletions
|
@ -8,7 +8,6 @@ import net.minecraft.item.ItemStack;
|
|||
import org.lwjgl.opengl.GL11;
|
||||
import techreborn.api.recipe.IBaseRecipeType;
|
||||
import techreborn.api.recipe.RecipeHandler;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import techreborn.util.ItemUtils;
|
||||
|
||||
import java.awt.*;
|
||||
|
@ -78,7 +77,7 @@ public abstract class GenericRecipeHander extends TemplateRecipeHandler {
|
|||
CachedGenericRecipe genericRecipe = (CachedGenericRecipe) recipe;
|
||||
float scale = 0.9F;
|
||||
GL11.glScalef(scale, scale, scale);
|
||||
GuiDraw.drawString("EU needed: " + (ConfigTechReborn.CentrifugeInputTick * genericRecipe.recipie.tickTime()), 16, 105, -1);
|
||||
GuiDraw.drawString("EU needed: " + (genericRecipe.recipie.euPerTick() * genericRecipe.recipie.tickTime()), 16, 105, -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue