Class TrialSpawnerBlockEntity
- All Implemented Interfaces:
Spawner,TrialSpawnerLogic.TrialSpawner
- Mappings:
Namespace Name official diointermediary net/minecraft/class_8961named net/minecraft/block/entity/TrialSpawnerBlockEntity
-
Field Summary
FieldsFields inherited from class net.minecraft.block.entity.BlockEntity
pos, removed, world -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns whether the block item should require the player to have operator permissions to copy the block entity data on placement.voidreadNbt(NbtCompound nbt) Reads data fromnbt.voidsetEntityType(EntityType<?> type, Random random) voidsetSpawnerState(World world, TrialSpawnerState spawnerState) Returns the serialized state of this block entity that is observable by clients.Returns the packet to send to nearby players when the block entity's observable state changes, ornullto not send the packet.voidprotected voidwriteNbt(NbtCompound nbt) Writes data tonbt.Methods inherited from class net.minecraft.block.entity.BlockEntity
cancelRemoval, createFromNbt, createNbt, createNbtWithId, createNbtWithIdentifyingData, getCachedState, getPos, getType, getWorld, hasWorld, isRemoved, markDirty, markDirty, markRemoved, onSyncedBlockEvent, populateCrashReport, posFromNbt, setCachedState, setStackNbt, setWorld, writeIdToNbt
-
Field Details
-
LOGGER
- Mappings:
Namespace Name Mixin selector official aLdio;a:Lorg/slf4j/Logger;intermediary field_47354Lnet/minecraft/class_8961;field_47354:Lorg/slf4j/Logger;named LOGGERLnet/minecraft/block/entity/TrialSpawnerBlockEntity;LOGGER:Lorg/slf4j/Logger;
-
spawner
- Mappings:
Namespace Name Mixin selector official bLdio;b:Ldir;intermediary field_47355Lnet/minecraft/class_8961;field_47355:Lnet/minecraft/class_8963;named spawnerLnet/minecraft/block/entity/TrialSpawnerBlockEntity;spawner:Lnet/minecraft/block/spawner/TrialSpawnerLogic;
-
-
Constructor Details
-
TrialSpawnerBlockEntity
- Mappings:
Namespace Name Mixin selector official <init>Ldio;<init>(Lhx;Ldjh;)Vintermediary <init>Lnet/minecraft/class_8961;<init>(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)Vnamed <init>Lnet/minecraft/block/entity/TrialSpawnerBlockEntity;<init>(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
-
-
Method Details
-
readNbt
Reads data fromnbt. Subclasses should override this if they store a persistent data.NBT is a storage format; therefore, a data from NBT is loaded to a block entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the block entity.
nbtmight not have all expected keys, or might have a key whose value does not meet the requirement (such as the type or the range). This method should fall back to a reasonable default value instead of throwing an exception.- Overrides:
readNbtin classBlockEntity- See Also:
- Mappings:
Namespace Name Mixin selector official aLdgv;a(Lsn;)Vintermediary method_11014Lnet/minecraft/class_2586;method_11014(Lnet/minecraft/class_2487;)Vnamed readNbtLnet/minecraft/block/entity/BlockEntity;readNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
writeNbt
Writes data tonbt. Subclasses should override this if they store a persistent data.NBT is a storage format; therefore, a data from NBT is loaded to a block entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the block entity.
- Overrides:
writeNbtin classBlockEntity- See Also:
- Mappings:
Namespace Name Mixin selector official bLdgv;b(Lsn;)Vintermediary method_11007Lnet/minecraft/class_2586;method_11007(Lnet/minecraft/class_2487;)Vnamed writeNbtLnet/minecraft/block/entity/BlockEntity;writeNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
toUpdatePacket
Description copied from class:BlockEntityReturns the packet to send to nearby players when the block entity's observable state changes, ornullto not send the packet.If the data returned by
initial chunk datais suitable for updates, the following shortcut can be used to create an update packet:BlockEntityUpdateS2CPacket.create(this). The NBT will be passed toBlockEntity.readNbt(net.minecraft.nbt.NbtCompound)on the client."Observable state" is a state that clients can observe without specific interaction. For example,
CampfireBlockEntity's cooked items are observable states, but chests' inventories are not observable states, since the player must first open that chest before they can see the contents.To sync block entity data using this method, use
serverWorld.getChunkManager().markForUpdate(this.getPos());.- Overrides:
toUpdatePacketin classBlockEntity- Returns:
- the packet to send to nearby players when the block entity's observable
state changes, or
nullto not send the packet - See Also:
- Mappings:
Namespace Name Mixin selector official cLdio;c()Lzh;intermediary method_55149Lnet/minecraft/class_8961;method_55149()Lnet/minecraft/class_2622;named toUpdatePacketLnet/minecraft/block/entity/TrialSpawnerBlockEntity;toUpdatePacket()Lnet/minecraft/network/packet/s2c/play/BlockEntityUpdateS2CPacket;
-
toInitialChunkDataNbt
Returns the serialized state of this block entity that is observable by clients.This is sent alongside the initial chunk data, as well as when the block entity implements
BlockEntity.toUpdatePacket()and decides to use the defaultBlockEntityUpdateS2CPacket."Observable state" is a state that clients can observe without specific interaction. For example,
CampfireBlockEntity's cooked items are observable states, but chests' inventories are not observable states, since the player must first open that chest before they can see the contents.To send all NBT data of this block entity saved to disk, return
BlockEntity.createNbt().- Overrides:
toInitialChunkDataNbtin classBlockEntity- Returns:
- the serialized state of this block entity that is observable by clients
- See Also:
- Mappings:
Namespace Name Mixin selector official ax_Ldgv;ax_()Lsn;intermediary method_16887Lnet/minecraft/class_2586;method_16887()Lnet/minecraft/class_2487;named toInitialChunkDataNbtLnet/minecraft/block/entity/BlockEntity;toInitialChunkDataNbt()Lnet/minecraft/nbt/NbtCompound;
-
copyItemDataRequiresOperator
public boolean copyItemDataRequiresOperator()Returns whether the block item should require the player to have operator permissions to copy the block entity data on placement.Block entities that can execute commands should override this to return
true.- Overrides:
copyItemDataRequiresOperatorin classBlockEntity- Returns:
- whether the block item should require the player to have operator permissions to copy the block entity data on placement
- See Also:
- Mappings:
Namespace Name Mixin selector official uLdgv;u()Zintermediary method_11011Lnet/minecraft/class_2586;method_11011()Znamed copyItemDataRequiresOperatorLnet/minecraft/block/entity/BlockEntity;copyItemDataRequiresOperator()Z
-
setEntityType
- Specified by:
setEntityTypein interfaceSpawner- Mappings:
Namespace Name Mixin selector official aLcuh;a(Lblz;Lauv;)Vintermediary method_46408Lnet/minecraft/class_8959;method_46408(Lnet/minecraft/class_1299;Lnet/minecraft/class_5819;)Vnamed setEntityTypeLnet/minecraft/block/entity/Spawner;setEntityType(Lnet/minecraft/entity/EntityType;Lnet/minecraft/util/math/random/Random;)V
-
getSpawner
- Mappings:
Namespace Name Mixin selector official dLdio;d()Ldir;intermediary method_55150Lnet/minecraft/class_8961;method_55150()Lnet/minecraft/class_8963;named getSpawnerLnet/minecraft/block/entity/TrialSpawnerBlockEntity;getSpawner()Lnet/minecraft/block/spawner/TrialSpawnerLogic;
-
getSpawnerState
- Specified by:
getSpawnerStatein interfaceTrialSpawnerLogic.TrialSpawner- Mappings:
Namespace Name Mixin selector official fLdir$a;f()Ldiu;intermediary method_55151Lnet/minecraft/class_8963$class_8964;method_55151()Lnet/minecraft/class_8967;named getSpawnerStateLnet/minecraft/block/spawner/TrialSpawnerLogic$TrialSpawner;getSpawnerState()Lnet/minecraft/block/enums/TrialSpawnerState;
-
setSpawnerState
- Specified by:
setSpawnerStatein interfaceTrialSpawnerLogic.TrialSpawner- Mappings:
Namespace Name Mixin selector official aLdir$a;a(Lctp;Ldiu;)Vintermediary method_55146Lnet/minecraft/class_8963$class_8964;method_55146(Lnet/minecraft/class_1937;Lnet/minecraft/class_8967;)Vnamed setSpawnerStateLnet/minecraft/block/spawner/TrialSpawnerLogic$TrialSpawner;setSpawnerState(Lnet/minecraft/world/World;Lnet/minecraft/block/enums/TrialSpawnerState;)V
-
updateListeners
public void updateListeners()- Specified by:
updateListenersin interfaceTrialSpawnerLogic.TrialSpawner- Mappings:
Namespace Name Mixin selector official gLdir$a;g()Vintermediary method_55152Lnet/minecraft/class_8963$class_8964;method_55152()Vnamed updateListenersLnet/minecraft/block/spawner/TrialSpawnerLogic$TrialSpawner;updateListeners()V
-