mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
/*
|
|
* This file ("VillageCustomCropFieldHandler.java") is part of the Actually Additions Mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense/
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.gen;
|
|
|
|
import cpw.mods.fml.common.registry.VillagerRegistry;
|
|
import net.minecraft.world.gen.structure.StructureVillagePieces;
|
|
|
|
import java.util.List;
|
|
import java.util.Random;
|
|
|
|
public class VillageCustomCropFieldHandler implements VillagerRegistry.IVillageCreationHandler{
|
|
|
|
@Override
|
|
public StructureVillagePieces.PieceWeight getVillagePieceWeight(Random random, int i){
|
|
return new StructureVillagePieces.PieceWeight(VillageComponentCustomCropField.class, 5, 1);
|
|
}
|
|
|
|
@Override
|
|
public Class<?> getComponentClass(){
|
|
return VillageComponentCustomCropField.class;
|
|
}
|
|
|
|
@Override
|
|
public Object buildComponent(StructureVillagePieces.PieceWeight villagePiece, StructureVillagePieces.Start startPiece, List pieces, Random random, int p1, int p2, int p3, int p4, int p5){
|
|
return VillageComponentCustomCropField.buildComponent(pieces, p1, p2, p3, p4);
|
|
}
|
|
}
|