Fix #103
This commit is contained in:
parent
db2a555ae9
commit
616c824257
6 changed files with 123 additions and 125 deletions
|
@ -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;
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue