Gave berry bushes the use animation when right clicked. Tweaked the apple leaf textures.

This commit is contained in:
Matt Caughey 2013-05-18 03:09:19 -04:00
parent 720b1b43fe
commit bfef1418d9
7 changed files with 4 additions and 5 deletions

View file

@ -245,16 +245,15 @@ public class BlockBOPFoliage extends BlockFlower implements IShearable
@Override @Override
public boolean onBlockActivated (World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9) public boolean onBlockActivated (World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9)
{ {
if (world.isRemote)
return false;
int meta = world.getBlockMetadata(x, y, z); int meta = world.getBlockMetadata(x, y, z);
if (meta == 8) if (meta == 8)
{ {
world.setBlock(x, y, z, blockID, 4, 3); world.setBlock(x, y, z, blockID, 4, 3);
EntityItem entityitem = new EntityItem(world, player.posX, player.posY - 1.0D, player.posZ, new ItemStack(Items.berries.get(), 1, 0)); EntityItem entityitem = new EntityItem(world, player.posX, player.posY - 1.0D, player.posZ, new ItemStack(Items.berries.get(), 1, 0));
world.spawnEntityInWorld(entityitem); if (!world.isRemote) {
entityitem.onCollideWithPlayer(player); world.spawnEntityInWorld(entityitem);
entityitem.onCollideWithPlayer(player);
}
return true; return true;
} }
else else

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 631 B

After

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 631 B

After

Width:  |  Height:  |  Size: 680 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 629 B

After

Width:  |  Height:  |  Size: 673 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 642 B

After

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 610 B

After

Width:  |  Height:  |  Size: 641 B