Skip to content

Spatial Storage Allowed Tile Entities (Applied Energistics 2)

Description

Either the class itself or its String name to add or remove from the Tile Entities allowed in Spatial Storage.

Identifier

Refer to this via any of the following:

groovy
mods.ae2.spatial
mods.ae2.Spatial
mods.appliedenergistics2.spatial/* Used as page default */
mods.appliedenergistics2.Spatial

Adding Entries

  • Adds the given class to the list of allowed TileEntities to be moved by Spatial Storage:

    groovy
    mods.appliedenergistics2.spatial.add(Class<? extends TileEntity>)
  • Adds the given class to the list of allowed TileEntities to be moved by Spatial Storage:

    groovy
    mods.appliedenergistics2.spatial.add(String)
Example
groovy
mods.appliedenergistics2.spatial.add('net.minecraft.tileentity.TileEntityStructure')

Removing Entries

  • Removes the given class from the list of allowed TileEntities to be moved by Spatial Storage:

    groovy
    mods.appliedenergistics2.spatial.remove(Class<? extends TileEntity>)
  • Removes the given class from the list of allowed TileEntities to be moved by Spatial Storage:

    groovy
    mods.appliedenergistics2.spatial.remove(String)
  • Removes all registered recipes:

    groovy
    mods.appliedenergistics2.spatial.removeAll()
Example
groovy
mods.appliedenergistics2.spatial.remove('net.minecraft.tileentity.TileEntityChest')
mods.appliedenergistics2.spatial.removeAll()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.