File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed
common/src/main/kotlin/com/lambda/util Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,25 @@ import net.minecraft.world.BlockView
3333object BlockUtils {
3434 val shulkerBlocks = shulkerBoxes.map { it.block }
3535
36+ val bedBlocks = setOf (
37+ Blocks .WHITE_BED ,
38+ Blocks .ORANGE_BED ,
39+ Blocks .MAGENTA_BED ,
40+ Blocks .LIGHT_BLUE_BED ,
41+ Blocks .YELLOW_BED ,
42+ Blocks .LIME_BED ,
43+ Blocks .PINK_BED ,
44+ Blocks .GRAY_BED ,
45+ Blocks .LIGHT_GRAY_BED ,
46+ Blocks .CYAN_BED ,
47+ Blocks .PURPLE_BED ,
48+ Blocks .BLUE_BED ,
49+ Blocks .BROWN_BED ,
50+ Blocks .GREEN_BED ,
51+ Blocks .RED_BED ,
52+ Blocks .BLACK_BED ,
53+ )
54+
3655 val interactionBlacklist = mutableSetOf (
3756 Blocks .CHEST ,
3857 Blocks .TRAPPED_CHEST ,
@@ -63,25 +82,6 @@ object BlockUtils {
6382 Blocks .LEVER ,
6483 ).apply { addAll(shulkerBlocks); addAll(bedBlocks) }
6584
66- val bedBlocks = setOf (
67- Blocks .WHITE_BED ,
68- Blocks .ORANGE_BED ,
69- Blocks .MAGENTA_BED ,
70- Blocks .LIGHT_BLUE_BED ,
71- Blocks .YELLOW_BED ,
72- Blocks .LIME_BED ,
73- Blocks .PINK_BED ,
74- Blocks .GRAY_BED ,
75- Blocks .LIGHT_GRAY_BED ,
76- Blocks .CYAN_BED ,
77- Blocks .PURPLE_BED ,
78- Blocks .BLUE_BED ,
79- Blocks .BROWN_BED ,
80- Blocks .GREEN_BED ,
81- Blocks .RED_BED ,
82- Blocks .BLACK_BED ,
83- )
84-
8585 val signs = setOf (
8686 Blocks .OAK_SIGN ,
8787 Blocks .BIRCH_SIGN ,
You can’t perform that action at this time.
0 commit comments