blob: 74b6069c6903491da6ad42f7478699e3b24df450 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package lv.enes.mc.eris_alchemy.utils;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.tags.TagKey;
import net.minecraft.world.level.block.Block;
import java.util.stream.Stream;
public class BlockUtils {
public static Stream<Block> streamTag(TagKey<Block> tag) {
return TagUtils.stream(BuiltInRegistries.BLOCK, tag);
}
}
|