Attempt to try to fix the 1.16.3's branch having multiple 'wayoftime' folders.

This commit is contained in:
WayofTime 2020-10-29 15:48:44 -04:00
parent c159828248
commit 6b4145a67c
224 changed files with 0 additions and 24047 deletions

View file

@ -1,31 +0,0 @@
package wayoftime.bloodmagic.recipe;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.util.ResourceLocation;
import wayoftime.bloodmagic.api.impl.recipe.RecipeAlchemyArray;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.common.registries.BloodMagicRecipeSerializers;
public class IRecipeAlchemyArray extends RecipeAlchemyArray
{
public IRecipeAlchemyArray(ResourceLocation id, ResourceLocation texture, Ingredient baseIngredient, Ingredient addedIngredient, ItemStack result)
{
super(id, texture, baseIngredient, addedIngredient, result);
}
@Override
public IRecipeSerializer<RecipeAlchemyArray> getSerializer()
{
return BloodMagicRecipeSerializers.ARRAY.getRecipeSerializer();
}
@Override
public IRecipeType<RecipeAlchemyArray> getType()
{
return BloodMagicRecipeType.ARRAY;
}
}