Record Class LocationCheckLootCondition

java.lang.Object
java.lang.Record
net.minecraft.loot.condition.LocationCheckLootCondition
Record Components:
predicate -
offset -
All Implemented Interfaces:
Predicate<LootContext>, LootCondition, LootContextAware

public record LocationCheckLootCondition(Optional<LocationPredicate> predicate, BlockPos offset) extends Record implements LootCondition
Mappings:
Namespace Name
named net/minecraft/loot/condition/LocationCheckLootCondition
intermediary net/minecraft/class_205
official ets
named predicate
intermediary comp_1874
official b
named offset
intermediary comp_1875
official c
  • Field Details

    • predicate

      private final Optional<LocationPredicate> predicate
      The field for the predicate record component.
    • offset

      private final BlockPos offset
      The field for the offset record component.
    • OFFSET_CODEC

      private static final com.mojang.serialization.MapCodec<BlockPos> OFFSET_CODEC
      Mappings:
      Namespace Name Mixin selector
      named OFFSET_CODEC Lnet/minecraft/loot/condition/LocationCheckLootCondition;OFFSET_CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_45867 Lnet/minecraft/class_205;field_45867:Lcom/mojang/serialization/MapCodec;
      official d Lets;d:Lcom/mojang/serialization/MapCodec;
    • CODEC

      public static final com.mojang.serialization.MapCodec<LocationCheckLootCondition> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/loot/condition/LocationCheckLootCondition;CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_45866 Lnet/minecraft/class_205;field_45866:Lcom/mojang/serialization/MapCodec;
      official a Lets;a:Lcom/mojang/serialization/MapCodec;
  • Constructor Details

    • LocationCheckLootCondition

      public LocationCheckLootCondition(Optional<LocationPredicate> optional, BlockPos offset)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/loot/condition/LocationCheckLootCondition;<init>(Ljava/util/Optional;Lnet/minecraft/util/math/BlockPos;)V
      intermediary <init> Lnet/minecraft/class_205;<init>(Ljava/util/Optional;Lnet/minecraft/class_2338;)V
      official <init> Lets;<init>(Ljava/util/Optional;Liz;)V
  • Method Details

    • getType

      public LootConditionType getType()
      Specified by:
      getType in interface LootCondition
      Mappings:
      Namespace Name Mixin selector
      named getType Lnet/minecraft/loot/condition/LootCondition;getType()Lnet/minecraft/loot/condition/LootConditionType;
      intermediary method_29325 Lnet/minecraft/class_5341;method_29325()Lnet/minecraft/class_5342;
      official b Letu;b()Letv;
    • test

      public boolean test(LootContext lootContext)
      Specified by:
      test in interface Predicate<LootContext>
      Mappings:
      Namespace Name Mixin selector
      named test Lnet/minecraft/loot/condition/LocationCheckLootCondition;test(Lnet/minecraft/loot/context/LootContext;)Z
      intermediary method_881 Lnet/minecraft/class_205;method_881(Lnet/minecraft/class_47;)Z
      official a Lets;a(Leqk;)Z
    • builder

      public static LootCondition.Builder builder(LocationPredicate.Builder predicateBuilder)
      Mappings:
      Namespace Name Mixin selector
      named builder Lnet/minecraft/loot/condition/LocationCheckLootCondition;builder(Lnet/minecraft/predicate/entity/LocationPredicate$Builder;)Lnet/minecraft/loot/condition/LootCondition$Builder;
      intermediary method_884 Lnet/minecraft/class_205;method_884(Lnet/minecraft/class_2090$class_2091;)Lnet/minecraft/class_5341$class_210;
      official a Lets;a(Ldc$a;)Letu$a;
    • builder

      public static LootCondition.Builder builder(LocationPredicate.Builder predicateBuilder, BlockPos pos)
      Mappings:
      Namespace Name Mixin selector
      named builder Lnet/minecraft/loot/condition/LocationCheckLootCondition;builder(Lnet/minecraft/predicate/entity/LocationPredicate$Builder;Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/loot/condition/LootCondition$Builder;
      intermediary method_30151 Lnet/minecraft/class_205;method_30151(Lnet/minecraft/class_2090$class_2091;Lnet/minecraft/class_2338;)Lnet/minecraft/class_5341$class_210;
      official a Lets;a(Ldc$a;Liz;)Letu$a;
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • predicate

      public Optional<LocationPredicate> predicate()
      Returns the value of the predicate record component.
      Returns:
      the value of the predicate record component
    • offset

      public BlockPos offset()
      Returns the value of the offset record component.
      Returns:
      the value of the offset record component