Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3public class ItemArmor extends Item {
4
5 private static final int[] bn = new int[] { 3, 8, 6, 3 };
6 private static final int[] bo = new int[] { 11, 16, 15, 13 };
7 public final int a;
8 public final int bk;
9 public final int bl;
10 public final int bm;
11
12 public ItemArmor(int i, int j, int k, int l) {
13 super(i);
14 this.a = j;
15 this.bk = l;
16 this.bm = k;
17 this.bl = bn[l];
18 this.d(bo[l] * 3 << j);
19 this.maxStackSize = 1;
20 }
21}