This commit is contained in:
Aleksey 2021-02-27 00:39:17 +03:00
parent db2a555ae9
commit 616c824257
6 changed files with 123 additions and 125 deletions

View file

@ -10,8 +10,8 @@ import me.shedaniel.rei.api.RecipeDisplay;
import net.minecraft.util.Identifier;
public class REIAlloyingFuelDisplay implements RecipeDisplay {
private EntryStack fuel;
private int fuelTime;
private final EntryStack fuel;
private final int fuelTime;
public REIAlloyingFuelDisplay(EntryStack fuel, int fuelTime) {
this.fuel = fuel;

View file

@ -52,7 +52,6 @@ public class REIPlugin implements REIPluginV0 {
recipeHelper.registerRecipes(INFUSION, InfusionRecipe.class, REIInfusionDisplay::new);
FuelRegistryImpl.INSTANCE.getFuelTimes().forEach((item, time) -> {
if (time >= 2000) {
System.out.println(item);
recipeHelper.registerDisplay(new REIAlloyingFuelDisplay(EntryStack.create(item), time));
}
});