update things

This commit is contained in:
modmuss50 2015-12-13 13:29:15 +00:00
parent fb6b5135e4
commit 3b3deea57b
3 changed files with 14 additions and 4 deletions

View file

@ -47,6 +47,11 @@ public class FusionReactorRecipeCategory implements IRecipeCategory {
}
@Override
public void drawAnimations(Minecraft minecraft) {
}
@Override
public void setRecipe(@Nonnull IRecipeLayout recipeLayout, @Nonnull IRecipeWrapper recipeWrapper) {
recipeLayout.getItemStacks().init(inputSlot1, true, 21, 0);

View file

@ -63,4 +63,9 @@ public class FusionReactorRecipeWrapper implements IRecipeWrapper {
fontRendererObj.drawStringWithShadow("Ticks to process: " + baseRecipe.getTickTime(), 0, 90, -1);
fontRendererObj.drawStringWithShadow("Time to process: " + baseRecipe.getTickTime() / 20 + " seconds", 0, 100, -1);
}
@Override
public void drawAnimations(Minecraft minecraft, int recipeWidth, int recipeHeight) {
}
}