Nothing to see here
This commit is contained in:
parent
bc2bf26fc0
commit
ea99f354ad
3 changed files with 14 additions and 1 deletions
|
@ -59,6 +59,15 @@ public class TROreGen implements IWorldGenerator {
|
|||
Blocks.end_stone);
|
||||
LogHelper.info("WorldGen Loaded");
|
||||
}
|
||||
|
||||
public void retroGen(Random random, int chunkX, int chunkZ, World world)
|
||||
{
|
||||
//TODO
|
||||
generateUndergroundOres(random, chunkX, chunkZ, world);
|
||||
generateHellOres(random, chunkX, chunkZ, world);
|
||||
generateEndOres(random, chunkX, chunkZ, world);
|
||||
world.getChunkFromChunkCoords(chunkX, chunkZ).setChunkModified();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void generate(Random random, int xChunk, int zChunk, World world,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue