IM AN IDIOT
This commit is contained in:
parent
56f37c8fff
commit
4fa36210ad
2 changed files with 9 additions and 7 deletions
|
@ -551,9 +551,10 @@ public class ChunkProviderBOPhell implements IChunkProvider
|
||||||
(new WorldGenHellLava(Block.lavaMoving.blockID, true)).generate(this.worldObj, this.hellRNG, l1, i2, j2);
|
(new WorldGenHellLava(Block.lavaMoving.blockID, true)).generate(this.worldObj, this.hellRNG, l1, i2, j2);
|
||||||
}
|
}
|
||||||
|
|
||||||
var6.decorate(worldObj, hellRNG, k, l);
|
|
||||||
|
|
||||||
MinecraftForge.EVENT_BUS.post(new DecorateBiomeEvent.Post(worldObj, hellRNG, k, l));
|
MinecraftForge.EVENT_BUS.post(new DecorateBiomeEvent.Post(worldObj, hellRNG, k, l));
|
||||||
|
|
||||||
|
var6.decorate(worldObj, hellRNG, k, l);
|
||||||
|
|
||||||
MinecraftForge.EVENT_BUS.post(new PopulateChunkEvent.Post(par1IChunkProvider, worldObj, hellRNG, par2, par3, false));
|
MinecraftForge.EVENT_BUS.post(new PopulateChunkEvent.Post(par1IChunkProvider, worldObj, hellRNG, par2, par3, false));
|
||||||
|
|
||||||
BlockSand.fallInstantly = false;
|
BlockSand.fallInstantly = false;
|
||||||
|
|
|
@ -40,11 +40,6 @@ public class WorldProviderBOPhell extends WorldProvider
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public IChunkProvider createChunkGenerator()
|
|
||||||
{
|
|
||||||
return new ChunkProviderHell(this.worldObj, this.worldObj.getSeed());
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isSurfaceWorld()
|
public boolean isSurfaceWorld()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
@ -75,4 +70,10 @@ public class WorldProviderBOPhell extends WorldProvider
|
||||||
{
|
{
|
||||||
return "Nether";
|
return "Nether";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IChunkProvider createChunkGenerator()
|
||||||
|
{
|
||||||
|
return new ChunkProviderBOPhell(this.worldObj, this.worldObj.getSeed());
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue