2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
628 B
Java

package com.zivilon.cinder_loe;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.world.World;
public class CinderDrinkRecipe
implements IRecipe {
@Override
public boolean matches(InventoryCrafting inv, World world) {
return false;
}
@Override
public ItemStack getCraftingResult(InventoryCrafting p_77572_1_) {
return null;
}
@Override
public int getRecipeSize() {
return 0;
}
@Override
public ItemStack getRecipeOutput() {
return null;
}
}