Can ItemStacks be written straight to a configuration node?
Anyone have examples on how to do this?
Anyone have examples of how the file would look once an ItemStack was written to it?
Thank you.
Can ItemStacks be written straight to a configuration node?
Anyone have examples on how to do this?
Anyone have examples of how the file would look once an ItemStack was written to it?
Thank you.
public ConfigurationNode toConfigurationNode(ItemStack stack) {
return ConfigurateTranslator.instance().translateData(stack.toContainer());
}
Thank you You’re the best!