Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3import java.util.Random;
4
5public class BlockBookshelf extends Block {
6
7 public BlockBookshelf(int i, int j) {
8 super(i, j, Material.WOOD);
9 }
10
11 public int a(int i) {
12 return i <= 1 ? 4 : this.textureId;
13 }
14
15 public int a(Random random) {
16 return 0;
17 }
18}