We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b99cb commit c331d54Copy full SHA for c331d54
common/src/main/kotlin/com/lambda/util/BlockUtils.kt
@@ -60,7 +60,26 @@ object BlockUtils {
60
Blocks.NOTE_BLOCK,
61
Blocks.STRUCTURE_BLOCK,
62
Blocks.COMMAND_BLOCK,
63
- ).apply { addAll(shulkerBlocks) }
+ ).apply { addAll(shulkerBlocks); addAll(bedBlocks) }
64
+
65
+ val bedBlocks = setOf(
66
+ Blocks.WHITE_BED,
67
+ Blocks.ORANGE_BED,
68
+ Blocks.MAGENTA_BED,
69
+ Blocks.LIGHT_BLUE_BED,
70
+ Blocks.YELLOW_BED,
71
+ Blocks.LIME_BED,
72
+ Blocks.PINK_BED,
73
+ Blocks.GRAY_BED,
74
+ Blocks.LIGHT_GRAY_BED,
75
+ Blocks.CYAN_BED,
76
+ Blocks.PURPLE_BED,
77
+ Blocks.BLUE_BED,
78
+ Blocks.BROWN_BED,
79
+ Blocks.GREEN_BED,
80
+ Blocks.RED_BED,
81
+ Blocks.BLACK_BED,
82
+ )
83
84
val signs = setOf(
85
Blocks.OAK_SIGN,
0 commit comments