add method to itembuilder

This commit is contained in:
Ryder Belserion 2024-10-11 16:58:01 -04:00
parent 4495abd278
commit 2dfaa290e1
No known key found for this signature in database

View File

@ -730,6 +730,16 @@ public class ItemBuilder {
return this;
}
public ItemBuilder addInteger(int value) {
this.itemStack.editMeta(itemMeta -> {
PersistentDataContainer container = itemMeta.getPersistentDataContainer();
container.set(Keys.auction_price.getNamespacedKey(), PersistentDataType.INTEGER, value);
});
return this;
}
/**
* Set the lore of the item with papi support in the builder. This will auto force color in all the lores that contains color code. (&a, &c, &7, etc...)
*