1package net.minecraft.server; 2 3public class ItemLeaves extends ItemBlock { 4 5 public ItemLeaves(int i) { 6 super(i); 7 this.d(0); 8 this.a(true); 9 } 10 11 public int filterData(int i) { 12 return i | 8; 13 } 14}