Fix a Mixin bug that causes an Invoker conflict with Patchouli.
See https://github.com/SpongePowered/Mixin/issues/430
This commit is contained in:
@@ -10,8 +10,9 @@ import net.minecraft.recipe.Ingredient;
|
||||
@Mixin(Ingredient.class)
|
||||
public interface IngredientAccessor {
|
||||
|
||||
@Invoker
|
||||
void callCacheMatchingStacks();
|
||||
// Temporary fix for https://github.com/SpongePowered/Mixin/issues/430
|
||||
@Invoker("cacheMatchingStacks")
|
||||
void appeng_cacheMatchingStacks();
|
||||
|
||||
@Accessor
|
||||
ItemStack[] getMatchingStacks();
|
||||
|
||||
Reference in New Issue
Block a user