Fixed sapling bugs

This commit is contained in:
Amnet 2013-04-11 21:17:31 +02:00
parent ed477e7e3f
commit c8f9b76d3c
5 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,7 @@ public class BlockAcaciaSapling extends BlockSapling
if ((var6 & 8) == 0)
{
par1World.setBlock(par2, par3, par4, var6 | 8);
par1World.setBlockMetadataWithNotify(par2, par3, par4, var6 | 8, 2);
}
else
{

View File

@ -52,7 +52,7 @@ public class BlockAppleSapling extends BlockSapling
if ((var6 & 8) == 0)
{
par1World.setBlock(par2, par3, par4, var6 | 8);
par1World.setBlockMetadataWithNotify(par2, par3, par4, var6 | 8, 2);
}
else
{

View File

@ -54,7 +54,7 @@ public class BlockBambooSapling extends BlockSapling
if ((var6 & 8) == 0)
{
par1World.setBlock(par2, par3, par4, var6 | 8);
par1World.setBlockMetadataWithNotify(par2, par3, par4, var6 | 8, 2);
}
else
{

View File

@ -53,7 +53,7 @@ public class BlockDarkSapling extends BlockSapling
if ((var6 & 8) == 0)
{
par1World.setBlock(par2, par3, par4, var6 | 8);
par1World.setBlockMetadataWithNotify(par2, par3, par4, var6 | 8, 2);
}
else
{

View File

@ -788,7 +788,7 @@ public class BOPConfiguration {
tropicalRainforestID = config.get("Biome IDs", "Tropical Rainforest ID", 242).getInt();
tropicsID = config.get("Biome IDs", "Tropics ID", 243).getInt();
tundraID = config.get("Biome IDs", "Tundra ID", 244).getInt();
volcanoID = config.get("Biome IDs", "Volcano ID", 245)getInt();
volcanoID = config.get("Biome IDs", "Volcano ID", 245).getInt();
wastelandID = config.get("Biome IDs", "Wasteland ID", 246).getInt();
wetlandID = config.get("Biome IDs", "Wetland ID", 247).getInt();
woodlandID = config.get("Biome IDs", "Woodland ID", 248).getInt();