Ejemplo n.º 1
0
 public ItemChestChanger(int id, ChestChangerType type) {
   super(id);
   setMaxStackSize(1);
   this.type = type;
   setIconIndex(type.ordinal());
   setItemName(type.itemName);
 }
Ejemplo n.º 2
0
 public int getTargetChestOrdinal(int sourceOrdinal) {
   return type.getTarget();
 }