The minecraft:is_waxed
property in the copper golem entity definition (copper_golem.json
) lacks client synchronization, unlike other properties such as oxidation_level
and has_flower
. While vanilla behavior doesn't currently use this property, its unavailability to clients may limit future marketplace content and modding potential without affecting game balance.
How to Reproduce:
Examine
vanilla_1.21.110\entities\copper_golem.json
Compare
is_waxed
property with other synchronized properties
Observed Result:
is_waxed
has noclient_sync: true
parameterClient cannot detect waxed state changes
Other properties (
oxidation_level
,has_flower
) sync correctly
Expected Result:is_waxed
should include client synchronization:
"minecraft:is_waxed": {
"type": "bool",
"default": false,
"client_sync": true // Synchronized
}
Attachments
Comments 2
Thank you for your report!
However, this issue is 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 reproduce.