-
Notifications
You must be signed in to change notification settings - Fork 16
Description
Versions tested
Minedmap:
Minecraft:
itzg/minecraft-server docker image running Minecraft 1.20.1 "Paper"
Issue
The entities.json file is generated with all of the signs, but none of them have the front_text field, despite their other metadata being present and correct (coordinates, kind, material).
One of the signs from the entities.json file, formatted with jq:
{
"x": 358,
"y": 64,
"z": 227,
"type": "sign",
"kind": "sign",
"material": "spruce"
}Manually editing entities.json to insert a correctly-formatted front-text field will display the manually-added text in the viewer.
Edited entities.json:
{
"x": 358,
"y": 64,
"z": 227,
"type": "sign",
"kind": "sign",
"material": "spruce",
"front_text": [
[{"text": "hello", "color": "black"}],
[{"text": "world", "color": "black"}],
[{"text": "manually", "color": "black"}],
[{"text": "edited", "color": "black"}]
]
},This implies that the issue is not with the viewer, but instead that MinedMap isn't correctly extracting the sign entity data from the Minecraft world.
I know some Rust and am willing to help fix this issue, but I'm not familiar with this codebase, so I'd appreciate some advice and pointers to track down the problem.

