package com.cursedcauldron.wildbackport.core.mixin.access; import net.minecraft.core.Registry; import net.minecraft.resources.ResourceKey; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.gen.Invoker; @Mixin(Registry.class) public interface RegistryAccessor { @Invoker static Registry callRegisterSimple(ResourceKey> resourceKey, Registry.RegistryBootstrap registryBootstrap) { throw new UnsupportedOperationException(); } }