Fixed error caused by version update.

This commit is contained in:
Micle
2022-11-03 18:54:49 +00:00
parent 8169a1a344
commit feff4a13e3

View File

@ -46,7 +46,7 @@ public class ExtendedShapedRecipeBuilder {
}
public ExtendedShapedRecipeBuilder define(Character symbol, Tag<Item> tagIn) {
return this.define(symbol, Ingredient.of(tagIn));
return this.define(symbol, Ingredient.of((ItemLike) tagIn));
}
public ExtendedShapedRecipeBuilder define(Character symbol, ItemLike itemIn) {