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

The identifier mods.appliedenergistics2.spatial will be used as the default on this page.

All Identifiers

Any of these can be used to refer to this compat:

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(String)
  • Adds the given class to the list of allowed TileEntities to be moved by Spatial Storage:

    groovy
    mods.appliedenergistics2.spatial.add(Class<? extends TileEntity>)
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(String)
  • 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 all registered recipes:

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

Contributors

© 2024 CleanroomMC. All Rights Reserved.