This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
GulliverReloaded/src/main/java/com/thebrokenrail/gulliverreloaded/mixin/BrewingRecipeRegistryAccessor.java
TheBrokenRail 2a3223a873
All checks were successful
Gulliver Reloaded/pipeline/head This commit looks good
1.0
Initial Release
2020-03-26 23:05:28 -04:00

17 lines
529 B
Java

package com.thebrokenrail.gulliverreloaded.mixin;
import net.minecraft.item.Item;
import net.minecraft.potion.Potion;
import net.minecraft.recipe.BrewingRecipeRegistry;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
@SuppressWarnings("unused")
@Mixin(BrewingRecipeRegistry.class)
public interface BrewingRecipeRegistryAccessor {
@Invoker
static void callRegisterPotionRecipe(Potion input, Item item, Potion output) {
throw new UnsupportedOperationException();
}
}