From 00837d97b2e19f733b76ca9ed7f5cd0aa57dba2e Mon Sep 17 00:00:00 2001 From: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> Date: Thu, 5 Jan 2023 19:48:57 -0800 Subject: [PATCH] More docs --- .../api/block/custom/component/CustomBlockComponents.java | 7 +++++++ 1 file changed, 7 insertions(+) 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 {