Represents a block entity.

Importing the class

Link to importing-the-class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.tileentity.MCTileEntity;

Extending CapabilityProvider<MCTileEntity>

Link to extending-capabilityprovidermctileentity

MCTileEntity extends CapabilityProvider<MCTileEntity>. That means all methods available in CapabilityProvider<MCTileEntity> are also available in MCTileEntity

Name: updateData

Return Type: void

ZenScript
Copy
MCTileEntity.updateData(data as MapData) as void
ParameterTypeDescription
Parameter
data
Type
MapData
Description
No Description Provided
NombreTypeHas GetterHas SetterDescription
Nombre
data
Type
MapData
Has Getter
true
Has Setter
false
Description
No Description Provided
Nombre
pos
Type
BlockPos
Has Getter
true
Has Setter
false
Description
No Description Provided
Nombre
world
Type
MCWorld
Has Getter
true
Has Setter
false
Description
No Description Provided