diff --git a/api/geyser/src/main/java/org/geysermc/geyser/api/block/custom/component/CustomBlockComponents.java b/api/geyser/src/main/java/org/geysermc/geyser/api/block/custom/component/CustomBlockComponents.java index 9c09e6031..c22038898 100644 --- a/api/geyser/src/main/java/org/geysermc/geyser/api/block/custom/component/CustomBlockComponents.java +++ b/api/geyser/src/main/java/org/geysermc/geyser/api/block/custom/component/CustomBlockComponents.java @@ -123,10 +123,17 @@ public interface CustomBlockComponents { /** * Gets if the block should place only air * Equivalent to setting a dummy event to run on "minecraft:on_player_placing" + * * @return If the block should place only air. */ boolean placeAir(); + /** + * Gets the set of tags + * Equivalent to "tag:some_tag" + * + * @return The set of tags. + */ Set tags(); interface Builder {