MutableBundleContents
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.item.component.MutableBundleContents;
Members
clearItems() as Mutable
Clears the items of the MutableBundleContents.script.zs
Returns: The new MutableBundleContents.
myMutable.clearItems();
Return Type:
MutableBundleContents
static of(contents as BundleContents) as Mutable
Creates a new MutableBundleContents with the given contents.script.zs
Returns: The new MutableBundleContents.
MutableBundleContents.of(myBundleContents);
Parameters:
Return Type:
MutableBundleContents
removeOne() as IItemStack
Removes one item from the MutableBundleContents.script.zs
Returns: The item that was removed.
myMutable.removeOne();
Return Type:
IItemStack
toImmutable() as BundleContents
Converts the MutableBundleContents to an immutable BundleContents.script.zs
Returns: The immutable BundleContents.
myMutable.toImmutable();
Return Type:
BundleContents
implicit as BundleContents
Converts the MutableBundleContents to an immutable BundleContents.script.zs
// Mutable as BundleContentsmyMutable as BundleContents
Return Type:
BundleContents
tryInsert(stack as ItemStack) as int