disabled deco in promised lands

This commit is contained in:
ted80-PC 2013-05-07 22:09:10 +02:00
parent 9c17815e1a
commit e30df56595
2 changed files with 3 additions and 3 deletions

View file

@ -502,7 +502,7 @@ public class ChunkProviderPromised implements IChunkProvider
int var4 = par2 * 16;
int var5 = par3 * 16;
BiomeGenBase var6 = this.endWorld.getBiomeGenForCoords(var4 + 16, var5 + 16);
var6.decorate(this.endWorld, this.endWorld.rand, var4, var5);
//var6.decorate(this.endWorld, this.endWorld.rand, var4, var5);
MinecraftForge.EVENT_BUS.post(new PopulateChunkEvent.Post(par1IChunkProvider, endWorld, endWorld.rand, par2, par3, false));

View file

@ -83,12 +83,12 @@ public class WorldProviderPromised extends WorldProvider
public int getAverageGroundLevel()
{
return 50;
return 64;
}
public double getHorizon(World world)
{
return 0.6D;
return 0.0D;
}
@SideOnly(Side.CLIENT)