The Light Block flattening in 1.21.20.21 was done incorrectly. All 16 light blocks use the same ID on Java Edition, unlike Bedrock 1.21.20, where Light was given 16 different IDs.
Expected Result
Light block ID undergoes the following change:
light_block -> light["level"=#]
Original ID | New ID |
---|---|
light_block:0 | light["level"=0] |
light_block:1 | light["level"=1] |
light_block:2 | light["level"=2] |
light_block:3 | light["level"=3] |
light_block:4 | light["level"=4] |
light_block:5 | light["level"=5] |
light_block:6 | light["level"=6] |
light_block:7 | light["level"=7] |
light_block:8 | light["level"=8] |
light_block:9 | light["level"=9] |
light_block:10 | light["level"=10] |
light_block:11 | light["level"=11] |
light_block:12 | light["level"=12] |
light_block:13 | light["level"=13] |
light_block:14 | light["level"=14] |
light_block:15 | light["level"=15] |
The new light block ID has a "level" property from 0 to 15 to determine its brightness.
This change would match Java Edition.
Observed Result
The light block ID underwent the following change:
light_block -> light_block_#, where # is the light level emitted by the block.
Original ID | New ID |
---|---|
light_block:0 | light_block_0 |
light_block:1 | light_block_1 |
light_block:2 | light_block_2 |
light_block:3 | light_block_3 |
light_block:4 | light_block_4 |
light_block:5 | light_block_5 |
light_block:6 | light_block_6 |
light_block:7 | light_block_7 |
light_block:8 | light_block_8 |
light_block:9 | light_block_9 |
light_block:10 | light_block_10 |
light_block:11 | light_block_11 |
light_block:12 | light_block_12 |
light_block:13 | light_block_13 |
light_block:14 | light_block_14 |
light_block:15 | light_block_15 |
TheΒ "level" property does not exist.
This does not match Java Edition.
Linked issues
relates to 3
Comments 3
Thank you for your report!
After consideration, the issue is being closed as Working as Intended.
Please note, that mechanics of the game may change between updates.
Things such as graphics, sounds, world creation, biomes, redstone, villagers, and animals may not work the same in current versions.
Full Version History β Snapshot Version History β Feature Requests and Suggestions
Quick Links:
π Bug Tracker Guidelines β π¬ Community Support β π§ Mojang Support (Technical Issues) β π§ Microsoft Support (Account Issues)
π Project Summary β βοΈ Feedback and Suggestions β π Game Wiki
Can Confirmed.