Added textures for new foods

This commit is contained in:
Matt Caughey 2013-07-10 04:05:04 -04:00
parent d160d58a44
commit 97ffc5579f
7 changed files with 4 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 465 B

View File

@ -19,7 +19,7 @@ public class BiomeGenHighland extends BiomeGenBase
customBiomeDecorator.highGrassPerChunk = 25;
customBiomeDecorator.grassPerChunk = 25;
customBiomeDecorator.potatoesPerChunk = -999;
customBiomeDecorator.generateBoulders = true;
customBiomeDecorator.generateBoulders = false;
}
@Override

View File

@ -37,6 +37,9 @@ public class BiomeLayerSub extends BiomeLayer
if (k1 == Biomes.pasture.get().biomeID && nextInt(2) == 0) { l1 = Biomes.pastureMeadow.get().biomeID; }
if (k1 == Biomes.pasture.get().biomeID && nextInt(3) == 0) { l1 = Biomes.pastureThin.get().biomeID; }
if (k1 == Biomes.timber.get().biomeID && nextInt(3) == 0) { l1 = Biomes.timberThin.get().biomeID; }
if (k1 == BiomeGenBase.ocean.biomeID && nextInt(4) == 0) { l1 = Biomes.tropics.get().biomeID; }
if (k1 == BiomeGenBase.ocean.biomeID && nextInt(2) == 0) { l1 = Biomes.volcano.get().biomeID; }
if (k1 == BiomeGenBase.ocean.biomeID && nextInt(3) == 0) { l1 = Biomes.polar.get().biomeID; }
if (l1 == k1)
{