Removed unused mixin

This commit is contained in:
Aleksey 2020-09-30 22:26:50 +03:00
parent e6a02bfaf9
commit 4eb7105e33
2 changed files with 0 additions and 23 deletions

View file

@ -1,22 +0,0 @@
package ru.betterend.mixin.common;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
import net.minecraft.world.biome.Biome;
import net.minecraft.world.biome.DefaultBiomeCreator;
import net.minecraft.world.biome.GenerationSettings;
import net.minecraft.world.gen.GenerationStep;
import ru.betterend.BetterEnd;
import ru.betterend.registry.FeatureRegistry;
@Mixin(DefaultBiomeCreator.class)
public abstract class DefaultBiomeCreatorMixin {
@Inject(method = "composeEndSpawnSettings(Lnet/minecraft/world/biome/GenerationSettings$Builder;)Lnet/minecraft/world/biome/Biome;", at = @At("HEAD"))
private static void addEndOres(GenerationSettings.Builder builder, CallbackInfoReturnable<Biome> rcinfo) {
//builder.feature(GenerationStep.Feature.UNDERGROUND_ORES, FeatureRegistry.ENDER_ORE.getFeatureConfigured());
}
}

View file

@ -9,7 +9,6 @@
"ServerPlayNetworkHandlerMixin", "ServerPlayNetworkHandlerMixin",
"TagGroupLoaderMixin", "TagGroupLoaderMixin",
"CraftingScreenHandlerMixin", "CraftingScreenHandlerMixin",
"DefaultBiomeCreatorMixin",
"GenerationSettingsMixin", "GenerationSettingsMixin",
"BiomeMixin", "BiomeMixin",
"TagAccessor" "TagAccessor"