Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Apr 14, 2020
1 parent e6d4277 commit 11a7f08
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -21,6 +21,7 @@
import org.bukkit.potion.PotionEffectType;

import java.util.HashMap;
import java.util.List;

public class ItemHelperImpl extends ItemHelper {

Expand All @@ -45,12 +46,12 @@ public void setShapedRecipeIngredient(ShapedRecipe recipe, char c, ItemStack[] i
}

@Override
public void registerFurnaceRecipe(String keyName, String group, ItemStack result, ItemStack ingredient, float exp, int time, String type, boolean exact) {
public void registerFurnaceRecipe(String keyName, String group, ItemStack result, ItemStack[] ingredient, float exp, int time, String type, boolean exact) {
throw new UnsupportedOperationException();
}

@Override
public void registerShapelessRecipe(String keyName, String group, ItemStack result, ItemStack[] ingredients, boolean[] exact) {
public void registerShapelessRecipe(String keyName, String group, ItemStack result, List<ItemStack[]> ingredients, boolean[] exact) {
throw new UnsupportedOperationException();
}

Expand Down

0 comments on commit 11a7f08

Please sign in to comment.