Fixed villages completely
This commit is contained in:
parent
adeb945ed2
commit
8d31a72714
2 changed files with 4 additions and 2 deletions
|
@ -1,12 +1,14 @@
|
|||
package biomesoplenty.configuration;
|
||||
|
||||
import net.minecraft.world.gen.structure.MapGenStructureIO;
|
||||
import biomesoplenty.worldgen.structure.BOPStructureScatteredFeatureStart;
|
||||
import biomesoplenty.worldgen.structure.BOPStructureVillageStart;
|
||||
|
||||
public class BOPStructures
|
||||
{
|
||||
public static void init()
|
||||
{
|
||||
MapGenStructureIO.func_143034_b(BOPStructureVillageStart.class, "BOPVillage");
|
||||
MapGenStructureIO.func_143034_b(BOPStructureVillageStart.class, "Village");
|
||||
MapGenStructureIO.func_143034_b(BOPStructureScatteredFeatureStart.class, "Temple");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,7 +55,7 @@ public class BOPMapGenVillage extends MapGenStructure
|
|||
@Override
|
||||
public String func_143025_a()
|
||||
{
|
||||
return "BOPVillage";
|
||||
return "Village";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue