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.
16 lines
534 B
Java
16 lines
534 B
Java
package com.zivilon.cinder_loe.mixins;
|
|
|
|
import lotr.common.recipe.LOTRBrewingRecipes;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
@Mixin(LOTRBrewingRecipes.class)
|
|
public interface MixinLOTRBrewingRecipes {
|
|
|
|
@Invoker(value = "addBrewingRecipe", remap = false)
|
|
static void addRecipe(ItemStack result, Object... ingredients) {
|
|
throw new UnsupportedOperationException(); // This is just to satisfy the compiler; it won't be used.
|
|
}
|
|
}
|