You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
417 B
Java
21 lines
417 B
Java
package net.minecraft.item;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
public class ItemPiston extends ItemBlock
|
|
{
|
|
private static final String __OBFID = "CL_00000054";
|
|
|
|
public ItemPiston(Block p_i45348_1_)
|
|
{
|
|
super(p_i45348_1_);
|
|
}
|
|
|
|
/**
|
|
* Returns the metadata of the block which this Item (ItemBlock) can place
|
|
*/
|
|
public int getMetadata(int p_77647_1_)
|
|
{
|
|
return 7;
|
|
}
|
|
} |