Class DecoratedPotBlockEntity
- Mappings:
Namespace Name official czrintermediary net/minecraft/class_8172named net/minecraft/block/entity/DecoratedPotBlockEntity
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate booleanprivate static final intprivate static final StringFields inherited from class net.minecraft.block.entity.BlockEntity
pos, removed, world -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasStack()voidonBreak(World world, BlockPos pos, ItemStack tool, PlayerEntity player) voidreadNbt(NbtCompound nbt) Reads data fromnbt.voidreadNbtFromStack(ItemStack stack) booleanReturns 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.protected voidwriteNbt(NbtCompound nbt) Writes data tonbt.static voidwriteShardsToNbt(List<Item> shards, NbtCompound nbt) Methods inherited from class net.minecraft.block.entity.BlockEntity
cancelRemoval, copyItemDataRequiresOperator, createFromNbt, createNbt, createNbtWithId, createNbtWithIdentifyingData, getCachedState, getPos, getType, getWorld, hasWorld, isRemoved, markDirty, markDirty, markRemoved, onSyncedBlockEvent, populateCrashReport, posFromNbt, setCachedState, setStackNbt, setWorld, writeIdToNbt
-
Field Details
-
SHARDS_NBT_KEY
- See Also:
- Mappings:
Namespace Name Mixin selector official aLczr;a:Ljava/lang/String;intermediary field_42782Lnet/minecraft/class_8172;field_42782:Ljava/lang/String;named SHARDS_NBT_KEYLnet/minecraft/block/entity/DecoratedPotBlockEntity;SHARDS_NBT_KEY:Ljava/lang/String;
-
field_42783
private static final int field_42783- See Also:
- Mappings:
Namespace Name Mixin selector official bLczr;b:Iintermediary field_42783Lnet/minecraft/class_8172;field_42783:Inamed field_42783Lnet/minecraft/block/entity/DecoratedPotBlockEntity;field_42783:I
-
dropNothing
private boolean dropNothing- Mappings:
Namespace Name Mixin selector official cLczr;c:Zintermediary field_42784Lnet/minecraft/class_8172;field_42784:Znamed dropNothingLnet/minecraft/block/entity/DecoratedPotBlockEntity;dropNothing:Z
-
shards
- Mappings:
Namespace Name Mixin selector official dLczr;d:Ljava/util/List;intermediary field_42785Lnet/minecraft/class_8172;field_42785:Ljava/util/List;named shardsLnet/minecraft/block/entity/DecoratedPotBlockEntity;shards:Ljava/util/List;
-
-
Constructor Details
-
DecoratedPotBlockEntity
- Mappings:
Namespace Name Mixin selector official <init>Lczr;<init>(Lgt;Ldbq;)Vintermediary <init>Lnet/minecraft/class_8172;<init>(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)Vnamed <init>Lnet/minecraft/block/entity/DecoratedPotBlockEntity;<init>(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
-
-
Method Details
-
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 bLcze;b(Lre;)Vintermediary method_11007Lnet/minecraft/class_2586;method_11007(Lnet/minecraft/class_2487;)Vnamed writeNbtLnet/minecraft/block/entity/BlockEntity;writeNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
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 aLcze;a(Lre;)Vintermediary method_11014Lnet/minecraft/class_2586;method_11014(Lnet/minecraft/class_2487;)Vnamed readNbtLnet/minecraft/block/entity/BlockEntity;readNbt(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 cLczr;c()Lvm;intermediary method_49200Lnet/minecraft/class_8172;method_49200()Lnet/minecraft/class_2622;named toUpdatePacketLnet/minecraft/block/entity/DecoratedPotBlockEntity;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 aq_Lcze;aq_()Lre;intermediary method_16887Lnet/minecraft/class_2586;method_16887()Lnet/minecraft/class_2487;named toInitialChunkDataNbtLnet/minecraft/block/entity/BlockEntity;toInitialChunkDataNbt()Lnet/minecraft/nbt/NbtCompound;
-
writeShardsToNbt
- Mappings:
Namespace Name Mixin selector official aLczr;a(Ljava/util/List;Lre;)Vintermediary method_49199Lnet/minecraft/class_8172;method_49199(Ljava/util/List;Lnet/minecraft/class_2487;)Vnamed writeShardsToNbtLnet/minecraft/block/entity/DecoratedPotBlockEntity;writeShardsToNbt(Ljava/util/List;Lnet/minecraft/nbt/NbtCompound;)V
-
asStack
- Mappings:
Namespace Name Mixin selector official dLczr;d()Lcfv;intermediary method_49201Lnet/minecraft/class_8172;method_49201()Lnet/minecraft/class_1799;named asStackLnet/minecraft/block/entity/DecoratedPotBlockEntity;asStack()Lnet/minecraft/item/ItemStack;
-
getShards
- Mappings:
Namespace Name Mixin selector official fLczr;f()Ljava/util/List;intermediary method_49202Lnet/minecraft/class_8172;method_49202()Ljava/util/List;named getShardsLnet/minecraft/block/entity/DecoratedPotBlockEntity;getShards()Ljava/util/List;
-
onBreak
- Mappings:
Namespace Name Mixin selector official aLczr;a(Lcmi;Lgt;Lcfv;Lbym;)Vintermediary method_49197Lnet/minecraft/class_8172;method_49197(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_1799;Lnet/minecraft/class_1657;)Vnamed onBreakLnet/minecraft/block/entity/DecoratedPotBlockEntity;onBreak(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/player/PlayerEntity;)V
-
shouldDropNothing
public boolean shouldDropNothing()- Mappings:
Namespace Name Mixin selector official gLczr;g()Zintermediary method_49203Lnet/minecraft/class_8172;method_49203()Znamed shouldDropNothingLnet/minecraft/block/entity/DecoratedPotBlockEntity;shouldDropNothing()Z
-
getHorizontalFacing
- Mappings:
Namespace Name Mixin selector official iLczr;i()Lgz;intermediary method_49204Lnet/minecraft/class_8172;method_49204()Lnet/minecraft/class_2350;named getHorizontalFacingLnet/minecraft/block/entity/DecoratedPotBlockEntity;getHorizontalFacing()Lnet/minecraft/util/math/Direction;
-
readNbtFromStack
- Mappings:
Namespace Name Mixin selector official aLczr;a(Lcfv;)Vintermediary method_49196Lnet/minecraft/class_8172;method_49196(Lnet/minecraft/class_1799;)Vnamed readNbtFromStackLnet/minecraft/block/entity/DecoratedPotBlockEntity;readNbtFromStack(Lnet/minecraft/item/ItemStack;)V
-