Added + to Custom Model Data

This commit is contained in:
HexedHero 2019-09-25 13:54:05 -04:00
parent 73984a6749
commit 24bd6f0e5b

View File

@ -13,7 +13,7 @@ import net.Indyuce.mmoitems.version.nms.ItemTag;
public class Custom_Model_Data extends DoubleStat {
public Custom_Model_Data() {
super(new ItemStack(Material.PAINTING), "Custom Model Data", new String[] { "Your 1.14 model data." }, "custom-model-data", new String[] { "all" });
super(new ItemStack(Material.PAINTING), "Custom Model Data", new String[] { "Your 1.14+ model data." }, "custom-model-data", new String[] { "all" });
if (MMOItems.plugin.getVersion().isBelowOrEqual(1, 13))
disable();
@ -31,3 +31,4 @@ public class Custom_Model_Data extends DoubleStat {
mmoitem.setData(this, new DoubleData(item.getDouble("CustomModelData")));
}
}