1.15 Item Conversion Complete

This commit is contained in:
Driftay
2020-01-20 03:46:53 -05:00
parent ce1eedd7cd
commit 018f08699d
18 changed files with 1460 additions and 1034 deletions

View File

@@ -78,6 +78,7 @@ public class FactionsPlugin extends MPlugin {
public boolean mc112 = false;
public boolean mc113 = false;
public boolean mc114 = false;
public boolean mc115 = false;
public boolean useNonPacketParticles = false;
public boolean factionsFlight = false;
SkriptAddon skriptAddon;
@@ -164,6 +165,10 @@ public class FactionsPlugin extends MPlugin {
FactionsPlugin.instance.log("Minecraft Version 1.14 found.");
mc114 = true;
break;
case 15:
FactionsPlugin.instance.log("Minecraft Version 1.15 found.");
mc115 = true;
break;
}
migrateFPlayerLeaders();
log("==== End Setup ====");
@@ -464,7 +469,7 @@ public class FactionsPlugin extends MPlugin {
}
public ItemStack createItem(Material material, int amount, short datavalue, String name, List<String> lore) {
ItemStack item = new ItemStack(XMaterial.matchXMaterial(material.toString()).parseMaterial(), amount, datavalue);
ItemStack item = new ItemStack(XMaterial.matchXMaterial(material.toString()).get().parseMaterial(), amount, datavalue);
ItemMeta meta = item.getItemMeta();
meta.setDisplayName(color(name));
meta.setLore(colorList(lore));