public static boolean isConvertable(ItemStack is)
{
if (is.hasItemMeta())
{
ItemMeta im = is.getItemMeta();
if (im instanceof LeatherArmorMeta)
try
{
Integer.parseInt(im.getLore().get(0).substring(15));
return true;
}
catch (Exception e)
{
}
}
return false;
}
BPArmor.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:Breakpoint
作者:
评论列表
文章目录