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.
23 lines
520 B
Java
23 lines
520 B
Java
package net.minecraft.item;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.network.Packet;
|
|
import net.minecraft.world.World;
|
|
|
|
public class ItemMapBase extends Item
|
|
{
|
|
private static final String __OBFID = "CL_00000004";
|
|
|
|
/**
|
|
* false for all Items except sub-classes of ItemMapBase
|
|
*/
|
|
public boolean isMap()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public Packet func_150911_c(ItemStack p_150911_1_, World p_150911_2_, EntityPlayer p_150911_3_)
|
|
{
|
|
return null;
|
|
}
|
|
} |