Added textures for new foods
This commit is contained in:
parent
d160d58a44
commit
97ffc5579f
7 changed files with 4 additions and 1 deletions
Binary file not shown.
After Width: | Height: | Size: 441 B |
BIN
src/minecraft/assets/biomesoplenty/textures/items/fruitsalad.png
Normal file
BIN
src/minecraft/assets/biomesoplenty/textures/items/fruitsalad.png
Normal file
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 |
|
@ -19,7 +19,7 @@ public class BiomeGenHighland extends BiomeGenBase
|
||||||
customBiomeDecorator.highGrassPerChunk = 25;
|
customBiomeDecorator.highGrassPerChunk = 25;
|
||||||
customBiomeDecorator.grassPerChunk = 25;
|
customBiomeDecorator.grassPerChunk = 25;
|
||||||
customBiomeDecorator.potatoesPerChunk = -999;
|
customBiomeDecorator.potatoesPerChunk = -999;
|
||||||
customBiomeDecorator.generateBoulders = true;
|
customBiomeDecorator.generateBoulders = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -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(2) == 0) { l1 = Biomes.pastureMeadow.get().biomeID; }
|
||||||
if (k1 == Biomes.pasture.get().biomeID && nextInt(3) == 0) { l1 = Biomes.pastureThin.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 == 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)
|
if (l1 == k1)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue