A Minetest Game Based off of how I remember Minecraft Beta 1.2 - 1.5. Plus lots of room for new fun features and creative improvements of the features of those versions. Make sure you download the client mod: https://github.com/oilboi/crafter_client
I saw there's a /regen_signs command. I think the problem you want to fix here is that sign entities might die or get removed.
This might interest you:
In MCL2, I handle “node-bound entities” with LBMs. Whenever the chunk is loaded, it checks for nodes like signs, banners, modspawners, etc. If they don't have an entity, it is respawned.
It's not a perfect solution, but good enough. I know that /clearobjects is quite aggressive in removing entities.
I saw there's a
/regen_signs
command. I think the problem you want to fix here is that sign entities might die or get removed.This might interest you: In MCL2, I handle “node-bound entities” with LBMs. Whenever the chunk is loaded, it checks for nodes like signs, banners, modspawners, etc. If they don't have an entity, it is respawned.
It's not a perfect solution, but good enough. I know that
/clearobjects
is quite aggressive in removing entities.