diff --git a/src/main/java/com/gtnewhorizon/gtnhlib/util/data/BlockMeta.java b/src/main/java/com/gtnewhorizon/gtnhlib/util/data/BlockMeta.java index 6d6ea74..e3d1df7 100644 --- a/src/main/java/com/gtnewhorizon/gtnhlib/util/data/BlockMeta.java +++ b/src/main/java/com/gtnewhorizon/gtnhlib/util/data/BlockMeta.java @@ -6,7 +6,8 @@ /** * A mutable implementation of {@link ImmutableBlockMeta}. Must follow the same contracts as the immutable version. If - * your API should return a mutable pair, return this instead. + * your API should return a mutable pair, return this instead. If this type is exposed instead of the immutable + * interface, assume that the contained values can change. */ public class BlockMeta implements ImmutableBlockMeta { diff --git a/src/main/java/com/gtnewhorizon/gtnhlib/util/data/ItemMeta.java b/src/main/java/com/gtnewhorizon/gtnhlib/util/data/ItemMeta.java index 2dae720..b389451 100644 --- a/src/main/java/com/gtnewhorizon/gtnhlib/util/data/ItemMeta.java +++ b/src/main/java/com/gtnewhorizon/gtnhlib/util/data/ItemMeta.java @@ -6,7 +6,8 @@ /** * A mutable implementation of {@link ImmutableItemMeta}. Must follow the same contracts as the immutable version. If - * your API should return a mutable pair, return this instead. + * your API should return a mutable pair, return this instead. If this type is exposed instead of the immutable + * interface, assume that the contained values can change. */ public class ItemMeta implements ImmutableItemMeta {