001 package net.minecraft.item; 002 003 public class ItemPiston extends ItemBlock 004 { 005 public ItemPiston(int par1) 006 { 007 super(par1); 008 } 009 010 /** 011 * Returns the metadata of the block which this Item (ItemBlock) can place 012 */ 013 public int getMetadata(int par1) 014 { 015 return 7; 016 } 017 }