Class ConduitBlockEntity

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

public class ConduitBlockEntity extends BlockEntity
Mappings:
Namespace Name
official cwv
intermediary net/minecraft/class_2597
named net/minecraft/block/entity/ConduitBlockEntity
  • Field Details

    • field_31333

      private static final int field_31333
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lcwv;b:I
      intermediary field_31333 Lnet/minecraft/class_2597;field_31333:I
      named field_31333 Lnet/minecraft/block/entity/ConduitBlockEntity;field_31333:I
    • field_31334

      private static final int field_31334
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official c Lcwv;c:I
      intermediary field_31334 Lnet/minecraft/class_2597;field_31334:I
      named field_31334 Lnet/minecraft/block/entity/ConduitBlockEntity;field_31334:I
    • field_31335

      private static final float field_31335
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official d Lcwv;d:F
      intermediary field_31335 Lnet/minecraft/class_2597;field_31335:F
      named field_31335 Lnet/minecraft/block/entity/ConduitBlockEntity;field_31335:F
    • field_31336

      private static final int field_31336
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official e Lcwv;e:I
      intermediary field_31336 Lnet/minecraft/class_2597;field_31336:I
      named field_31336 Lnet/minecraft/block/entity/ConduitBlockEntity;field_31336:I
    • MIN_BLOCKS_TO_ACTIVATE

      private static final int MIN_BLOCKS_TO_ACTIVATE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official f Lcwv;f:I
      intermediary field_31337 Lnet/minecraft/class_2597;field_31337:I
      named MIN_BLOCKS_TO_ACTIVATE Lnet/minecraft/block/entity/ConduitBlockEntity;MIN_BLOCKS_TO_ACTIVATE:I
    • field_31338

      private static final int field_31338
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official g Lcwv;g:I
      intermediary field_31338 Lnet/minecraft/class_2597;field_31338:I
      named field_31338 Lnet/minecraft/block/entity/ConduitBlockEntity;field_31338:I
    • ACTIVATING_BLOCKS

      private static final Block[] ACTIVATING_BLOCKS
      Mappings:
      Namespace Name Mixin selector
      official h Lcwv;h:[Lcmt;
      intermediary field_11931 Lnet/minecraft/class_2597;field_11931:[Lnet/minecraft/class_2248;
      named ACTIVATING_BLOCKS Lnet/minecraft/block/entity/ConduitBlockEntity;ACTIVATING_BLOCKS:[Lnet/minecraft/block/Block;
    • ticks

      public int ticks
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a:I
      intermediary field_11936 Lnet/minecraft/class_2597;field_11936:I
      named ticks Lnet/minecraft/block/entity/ConduitBlockEntity;ticks:I
    • ticksActive

      private float ticksActive
      Mappings:
      Namespace Name Mixin selector
      official i Lcwv;i:F
      intermediary field_11932 Lnet/minecraft/class_2597;field_11932:F
      named ticksActive Lnet/minecraft/block/entity/ConduitBlockEntity;ticksActive:F
    • active

      private boolean active
      Mappings:
      Namespace Name Mixin selector
      official j Lcwv;j:Z
      intermediary field_11934 Lnet/minecraft/class_2597;field_11934:Z
      named active Lnet/minecraft/block/entity/ConduitBlockEntity;active:Z
    • eyeOpen

      private boolean eyeOpen
      Mappings:
      Namespace Name Mixin selector
      official k Lcwv;k:Z
      intermediary field_11933 Lnet/minecraft/class_2597;field_11933:Z
      named eyeOpen Lnet/minecraft/block/entity/ConduitBlockEntity;eyeOpen:Z
    • activatingBlocks

      private final List<BlockPos> activatingBlocks
      Mappings:
      Namespace Name Mixin selector
      official l Lcwv;l:Ljava/util/List;
      intermediary field_11937 Lnet/minecraft/class_2597;field_11937:Ljava/util/List;
      named activatingBlocks Lnet/minecraft/block/entity/ConduitBlockEntity;activatingBlocks:Ljava/util/List;
    • targetEntity

      @Nullable private @Nullable LivingEntity targetEntity
      Mappings:
      Namespace Name Mixin selector
      official m Lcwv;m:Lbeg;
      intermediary field_11939 Lnet/minecraft/class_2597;field_11939:Lnet/minecraft/class_1309;
      named targetEntity Lnet/minecraft/block/entity/ConduitBlockEntity;targetEntity:Lnet/minecraft/entity/LivingEntity;
    • targetUuid

      @Nullable private @Nullable UUID targetUuid
      Mappings:
      Namespace Name Mixin selector
      official q Lcwv;q:Ljava/util/UUID;
      intermediary field_11935 Lnet/minecraft/class_2597;field_11935:Ljava/util/UUID;
      named targetUuid Lnet/minecraft/block/entity/ConduitBlockEntity;targetUuid:Ljava/util/UUID;
    • nextAmbientSoundTime

      private long nextAmbientSoundTime
      Mappings:
      Namespace Name Mixin selector
      official r Lcwv;r:J
      intermediary field_11938 Lnet/minecraft/class_2597;field_11938:J
      named nextAmbientSoundTime Lnet/minecraft/block/entity/ConduitBlockEntity;nextAmbientSoundTime:J
  • Constructor Details

    • ConduitBlockEntity

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

    • 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
    • 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
    • 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 c Lcwv;c()Lus;
      intermediary method_38247 Lnet/minecraft/class_2597;method_38247()Lnet/minecraft/class_2622;
      named toUpdatePacket Lnet/minecraft/block/entity/ConduitBlockEntity;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;
    • clientTick

      public static void clientTick(World world, BlockPos pos, BlockState state, ConduitBlockEntity blockEntity)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Lcyt;Lcwv;)V
      intermediary method_31675 Lnet/minecraft/class_2597;method_31675(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;Lnet/minecraft/class_2597;)V
      named clientTick Lnet/minecraft/block/entity/ConduitBlockEntity;clientTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/ConduitBlockEntity;)V
    • serverTick

      public static void serverTick(World world, BlockPos pos, BlockState state, ConduitBlockEntity blockEntity)
      Mappings:
      Namespace Name Mixin selector
      official b Lcwv;b(Lcjw;Lgp;Lcyt;Lcwv;)V
      intermediary method_31677 Lnet/minecraft/class_2597;method_31677(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;Lnet/minecraft/class_2597;)V
      named serverTick Lnet/minecraft/block/entity/ConduitBlockEntity;serverTick(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/block/entity/ConduitBlockEntity;)V
    • openEye

      private static void openEye(ConduitBlockEntity blockEntity, List<BlockPos> activatingBlocks)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcwv;Ljava/util/List;)V
      intermediary method_31676 Lnet/minecraft/class_2597;method_31676(Lnet/minecraft/class_2597;Ljava/util/List;)V
      named openEye Lnet/minecraft/block/entity/ConduitBlockEntity;openEye(Lnet/minecraft/block/entity/ConduitBlockEntity;Ljava/util/List;)V
    • updateActivatingBlocks

      private static boolean updateActivatingBlocks(World world, BlockPos pos, List<BlockPos> activatingBlocks)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Ljava/util/List;)Z
      intermediary method_11069 Lnet/minecraft/class_2597;method_11069(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Ljava/util/List;)Z
      named updateActivatingBlocks Lnet/minecraft/block/entity/ConduitBlockEntity;updateActivatingBlocks(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/List;)Z
    • givePlayersEffects

      private static void givePlayersEffects(World world, BlockPos pos, List<BlockPos> activatingBlocks)
      Mappings:
      Namespace Name Mixin selector
      official b Lcwv;b(Lcjw;Lgp;Ljava/util/List;)V
      intermediary method_11055 Lnet/minecraft/class_2597;method_11055(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Ljava/util/List;)V
      named givePlayersEffects Lnet/minecraft/block/entity/ConduitBlockEntity;givePlayersEffects(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/List;)V
    • attackHostileEntity

      private static void attackHostileEntity(World world, BlockPos pos, BlockState state, List<BlockPos> activatingBlocks, ConduitBlockEntity blockEntity)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Lcyt;Ljava/util/List;Lcwv;)V
      intermediary method_11068 Lnet/minecraft/class_2597;method_11068(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;Ljava/util/List;Lnet/minecraft/class_2597;)V
      named attackHostileEntity Lnet/minecraft/block/entity/ConduitBlockEntity;attackHostileEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Ljava/util/List;Lnet/minecraft/block/entity/ConduitBlockEntity;)V
    • updateTargetEntity

      private static void updateTargetEntity(World world, BlockPos pos, ConduitBlockEntity blockEntity)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Lcwv;)V
      intermediary method_11064 Lnet/minecraft/class_2597;method_11064(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Lnet/minecraft/class_2597;)V
      named updateTargetEntity Lnet/minecraft/block/entity/ConduitBlockEntity;updateTargetEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/entity/ConduitBlockEntity;)V
    • getAttackZone

      private static Box getAttackZone(BlockPos pos)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lgp;)Ldzz;
      intermediary method_11059 Lnet/minecraft/class_2597;method_11059(Lnet/minecraft/class_2338;)Lnet/minecraft/class_238;
      named getAttackZone Lnet/minecraft/block/entity/ConduitBlockEntity;getAttackZone(Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/util/math/Box;
    • findTargetEntity

      @Nullable private static @Nullable LivingEntity findTargetEntity(World world, BlockPos pos, UUID uuid)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Ljava/util/UUID;)Lbeg;
      intermediary method_11056 Lnet/minecraft/class_2597;method_11056(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Ljava/util/UUID;)Lnet/minecraft/class_1309;
      named findTargetEntity Lnet/minecraft/block/entity/ConduitBlockEntity;findTargetEntity(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/UUID;)Lnet/minecraft/entity/LivingEntity;
    • spawnNautilusParticles

      private static void spawnNautilusParticles(World world, BlockPos pos, List<BlockPos> activatingBlocks, @Nullable @Nullable Entity entity, int ticks)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Lcjw;Lgp;Ljava/util/List;Lbdr;I)V
      intermediary method_11063 Lnet/minecraft/class_2597;method_11063(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;Ljava/util/List;Lnet/minecraft/class_1297;I)V
      named spawnNautilusParticles Lnet/minecraft/block/entity/ConduitBlockEntity;spawnNautilusParticles(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Ljava/util/List;Lnet/minecraft/entity/Entity;I)V
    • isActive

      public boolean isActive()
      Mappings:
      Namespace Name Mixin selector
      official d Lcwv;d()Z
      intermediary method_11065 Lnet/minecraft/class_2597;method_11065()Z
      named isActive Lnet/minecraft/block/entity/ConduitBlockEntity;isActive()Z
    • isEyeOpen

      public boolean isEyeOpen()
      Mappings:
      Namespace Name Mixin selector
      official f Lcwv;f()Z
      intermediary method_11066 Lnet/minecraft/class_2597;method_11066()Z
      named isEyeOpen Lnet/minecraft/block/entity/ConduitBlockEntity;isEyeOpen()Z
    • setEyeOpen

      private void setEyeOpen(boolean eyeOpen)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(Z)V
      intermediary method_11062 Lnet/minecraft/class_2597;method_11062(Z)V
      named setEyeOpen Lnet/minecraft/block/entity/ConduitBlockEntity;setEyeOpen(Z)V
    • getRotation

      public float getRotation(float tickDelta)
      Mappings:
      Namespace Name Mixin selector
      official a Lcwv;a(F)F
      intermediary method_11061 Lnet/minecraft/class_2597;method_11061(F)F
      named getRotation Lnet/minecraft/block/entity/ConduitBlockEntity;getRotation(F)F