Class SkullBlockEntity

java.lang.Object
net.minecraft.block.entity.BlockEntity
net.minecraft.block.entity.SkullBlockEntity

public class SkullBlockEntity extends BlockEntity
Mappings:
Namespace Name
official cxq
intermediary net/minecraft/class_2631
named net/minecraft/block/entity/SkullBlockEntity
  • Field Details

    • SKULL_OWNER_KEY

      public static final String SKULL_OWNER_KEY
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a:Ljava/lang/String;
      intermediary field_31363 Lnet/minecraft/class_2631;field_31363:Ljava/lang/String;
      named SKULL_OWNER_KEY Lnet/minecraft/block/entity/SkullBlockEntity;SKULL_OWNER_KEY:Ljava/lang/String;
    • NOTE_BLOCK_SOUND_KEY

      public static final String NOTE_BLOCK_SOUND_KEY
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lcxq;b:Ljava/lang/String;
      intermediary field_41602 Lnet/minecraft/class_2631;field_41602:Ljava/lang/String;
      named NOTE_BLOCK_SOUND_KEY Lnet/minecraft/block/entity/SkullBlockEntity;NOTE_BLOCK_SOUND_KEY:Ljava/lang/String;
    • userCache

      @Nullable private static @Nullable UserCache userCache
      Mappings:
      Namespace Name Mixin selector
      official c Lcxq;c:Lakn;
      intermediary field_12089 Lnet/minecraft/class_2631;field_12089:Lnet/minecraft/class_3312;
      named userCache Lnet/minecraft/block/entity/SkullBlockEntity;userCache:Lnet/minecraft/util/UserCache;
    • sessionService

      @Nullable private static @Nullable com.mojang.authlib.minecraft.MinecraftSessionService sessionService
      Mappings:
      Namespace Name Mixin selector
      official d Lcxq;d:Lcom/mojang/authlib/minecraft/MinecraftSessionService;
      intermediary field_12088 Lnet/minecraft/class_2631;field_12088:Lcom/mojang/authlib/minecraft/MinecraftSessionService;
      named sessionService Lnet/minecraft/block/entity/SkullBlockEntity;sessionService:Lcom/mojang/authlib/minecraft/MinecraftSessionService;
    • executor

      @Nullable private static @Nullable Executor executor
      Mappings:
      Namespace Name Mixin selector
      official e Lcxq;e:Ljava/util/concurrent/Executor;
      intermediary field_34029 Lnet/minecraft/class_2631;field_34029:Ljava/util/concurrent/Executor;
      named executor Lnet/minecraft/block/entity/SkullBlockEntity;executor:Ljava/util/concurrent/Executor;
    • owner

      @Nullable private @Nullable com.mojang.authlib.GameProfile owner
      Mappings:
      Namespace Name Mixin selector
      official f Lcxq;f:Lcom/mojang/authlib/GameProfile;
      intermediary field_12087 Lnet/minecraft/class_2631;field_12087:Lcom/mojang/authlib/GameProfile;
      named owner Lnet/minecraft/block/entity/SkullBlockEntity;owner:Lcom/mojang/authlib/GameProfile;
    • noteBlockSound

      @Nullable private @Nullable Identifier noteBlockSound
      Mappings:
      Namespace Name Mixin selector
      official g Lcxq;g:Lacf;
      intermediary field_41603 Lnet/minecraft/class_2631;field_41603:Lnet/minecraft/class_2960;
      named noteBlockSound Lnet/minecraft/block/entity/SkullBlockEntity;noteBlockSound:Lnet/minecraft/util/Identifier;
    • poweredTicks

      private int poweredTicks
      Mappings:
      Namespace Name Mixin selector
      official h Lcxq;h:I
      intermediary field_41315 Lnet/minecraft/class_2631;field_41315:I
      named poweredTicks Lnet/minecraft/block/entity/SkullBlockEntity;poweredTicks:I
    • powered

      private boolean powered
      Mappings:
      Namespace Name Mixin selector
      official i Lcxq;i:Z
      intermediary field_41316 Lnet/minecraft/class_2631;field_41316:Z
      named powered Lnet/minecraft/block/entity/SkullBlockEntity;powered:Z
  • Constructor Details

    • SkullBlockEntity

      public SkullBlockEntity(BlockPos pos, BlockState state)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lcxq;<init>(Lgp;Lcyt;)V
      intermediary <init> Lnet/minecraft/class_2631;<init>(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)V
      named <init> Lnet/minecraft/block/entity/SkullBlockEntity;<init>(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
  • Method Details

    • setServices

      public static void setServices(ApiServices apiServices, Executor executor)
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a(Lacw;Ljava/util/concurrent/Executor;)V
      intermediary method_39765 Lnet/minecraft/class_2631;method_39765(Lnet/minecraft/class_7497;Ljava/util/concurrent/Executor;)V
      named setServices Lnet/minecraft/block/entity/SkullBlockEntity;setServices(Lnet/minecraft/util/ApiServices;Ljava/util/concurrent/Executor;)V
    • clearServices

      public static void clearServices()
      Mappings:
      Namespace Name Mixin selector
      official c Lcxq;c()V
      intermediary method_39766 Lnet/minecraft/class_2631;method_39766()V
      named clearServices Lnet/minecraft/block/entity/SkullBlockEntity;clearServices()V
    • writeNbt

      protected void writeNbt(NbtCompound nbt)
      Writes data to nbt. 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:
      writeNbt in class BlockEntity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lcwl;b(Lqp;)V
      intermediary method_11007 Lnet/minecraft/class_2586;method_11007(Lnet/minecraft/class_2487;)V
      named writeNbt Lnet/minecraft/block/entity/BlockEntity;writeNbt(Lnet/minecraft/nbt/NbtCompound;)V
    • readNbt

      public void readNbt(NbtCompound nbt)
      Reads data from nbt. 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.

      nbt might 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:
      readNbt in class BlockEntity
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official a Lcwl;a(Lqp;)V
      intermediary method_11014 Lnet/minecraft/class_2586;method_11014(Lnet/minecraft/class_2487;)V
      named readNbt Lnet/minecraft/block/entity/BlockEntity;readNbt(Lnet/minecraft/nbt/NbtCompound;)V
    • tick

      public static void tick(World world, BlockPos pos, BlockState state, SkullBlockEntity blockEntity)
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a(Lcjw;Lgp;Lcyt;Lcxq;)V
      intermediary method_47589 Lnet/minecraft/class_2631;method_47589(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;Lnet/minecraft/class_2631;)V
      named tick Lnet/minecraft/block/entity/SkullBlockEntity;tick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/SkullBlockEntity;)V
    • getPoweredTicks

      public float getPoweredTicks(float tickDelta)
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a(F)F
      intermediary method_47588 Lnet/minecraft/class_2631;method_47588(F)F
      named getPoweredTicks Lnet/minecraft/block/entity/SkullBlockEntity;getPoweredTicks(F)F
    • getOwner

      @Nullable public @Nullable com.mojang.authlib.GameProfile getOwner()
      Mappings:
      Namespace Name Mixin selector
      official d Lcxq;d()Lcom/mojang/authlib/GameProfile;
      intermediary method_11334 Lnet/minecraft/class_2631;method_11334()Lcom/mojang/authlib/GameProfile;
      named getOwner Lnet/minecraft/block/entity/SkullBlockEntity;getOwner()Lcom/mojang/authlib/GameProfile;
    • getNoteBlockSound

      @Nullable public @Nullable Identifier getNoteBlockSound()
      Mappings:
      Namespace Name Mixin selector
      official f Lcxq;f()Lacf;
      intermediary method_47888 Lnet/minecraft/class_2631;method_47888()Lnet/minecraft/class_2960;
      named getNoteBlockSound Lnet/minecraft/block/entity/SkullBlockEntity;getNoteBlockSound()Lnet/minecraft/util/Identifier;
    • toUpdatePacket

      public BlockEntityUpdateS2CPacket toUpdatePacket()
      Description copied from class: BlockEntity
      Returns the packet to send to nearby players when the block entity's observable state changes, or null to not send the packet.

      If the data returned by initial chunk data is suitable for updates, the following shortcut can be used to create an update packet: BlockEntityUpdateS2CPacket.create(this). The NBT will be passed to BlockEntity.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:
      toUpdatePacket in class BlockEntity
      Returns:
      the packet to send to nearby players when the block entity's observable state changes, or null to not send the packet
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official g Lcxq;g()Lus;
      intermediary method_38250 Lnet/minecraft/class_2631;method_38250()Lnet/minecraft/class_2622;
      named toUpdatePacket Lnet/minecraft/block/entity/SkullBlockEntity;toUpdatePacket()Lnet/minecraft/network/packet/s2c/play/BlockEntityUpdateS2CPacket;
    • toInitialChunkDataNbt

      public NbtCompound 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 default BlockEntityUpdateS2CPacket.

      "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:
      toInitialChunkDataNbt in class BlockEntity
      Returns:
      the serialized state of this block entity that is observable by clients
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official ad_ Lcwl;ad_()Lqp;
      intermediary method_16887 Lnet/minecraft/class_2586;method_16887()Lnet/minecraft/class_2487;
      named toInitialChunkDataNbt Lnet/minecraft/block/entity/BlockEntity;toInitialChunkDataNbt()Lnet/minecraft/nbt/NbtCompound;
    • setOwner

      public void setOwner(@Nullable @Nullable com.mojang.authlib.GameProfile owner)
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a(Lcom/mojang/authlib/GameProfile;)V
      intermediary method_11333 Lnet/minecraft/class_2631;method_11333(Lcom/mojang/authlib/GameProfile;)V
      named setOwner Lnet/minecraft/block/entity/SkullBlockEntity;setOwner(Lcom/mojang/authlib/GameProfile;)V
    • loadOwnerProperties

      private void loadOwnerProperties()
      Mappings:
      Namespace Name Mixin selector
      official i Lcxq;i()V
      intermediary method_11339 Lnet/minecraft/class_2631;method_11339()V
      named loadOwnerProperties Lnet/minecraft/block/entity/SkullBlockEntity;loadOwnerProperties()V
    • loadProperties

      public static void loadProperties(@Nullable @Nullable com.mojang.authlib.GameProfile owner, Consumer<com.mojang.authlib.GameProfile> callback)
      Mappings:
      Namespace Name Mixin selector
      official a Lcxq;a(Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V
      intermediary method_11335 Lnet/minecraft/class_2631;method_11335(Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V
      named loadProperties Lnet/minecraft/block/entity/SkullBlockEntity;loadProperties(Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V