-
Bug
-
Resolution: Unresolved
-
None
-
1.20.4, 23w51b, 24w09a, 24w19b, 1.21, 24w33a, 1.21.1, 24w35a, 24w36a, 24w37a, 24w38a, 24w39a, 1.21.2 Pre-Release 3, 24w44a, 1.21.3, 1.21.4
-
None
-
Confirmed
-
Maps
-
Low
-
Gameplay
The Bug:
Ender chests have the wrong color on maps.
Steps to Reproduce:
- Summon some ender chests beside you by using the command provided below.
/fill ~1 ~ ~1 ~9 ~ ~9 minecraft:ender_chest
- Obtain a map, use it, and look at the color of the ender chests on the map.
- Compare the color of the ender chests on the map to the texture and color of ender chests.
Observed Behavior:
The map color of ender chests is gray but their textures are dark green.
Expected Behavior:
The map color of ender chests would be dark green, therefore matching the color of these blocks.
Code Analysis:
Code analysis by Avoma can be found below.
The following is based on a decompiled version of Minecraft 23w51b using Mojang mappings.
public class Blocks { ... public static final Block ENDER_CHEST = Blocks.register("ender_chest", (Block)new EnderChestBlock(BlockBehaviour.Properties.of().mapColor(MapColor.STONE).instrument(NoteBlockInstrument.BASEDRUM).requiresCorrectToolForDrops().strength(22.5f, 600.0f).lightLevel(blockState -> 7))); ...
If we look at the above class, we can see that ender chests use the map color "STONE". This seems a bit strange since the textures of ender chests are dark green, and not gray like stone.
- relates to
-
MC-201332 Normal shulker box and purple shulker box have wrong color on maps
- Open
-
MC-201333 Dark prismarine, stairs or slab and prismarine, stairs or slab have wrong color on maps
- Open
-
MC-148982 Map color for wheat is incorrect
- Resolved
-
MC-277161 Map color for disabled creaking heart is incorrect
- Resolved