The bug
When placing a sign against a cactus, the cactus breaks and the sign drops as an item. However, if the sign is placed on the inside of a ring of four cacti, the cacti that break as a result of this depends on the one it is placed on.
Linked issues
clones 1
testing discovered 1
Attachments
Comments 13
Minecraft is rife with nondeterminism and race conditions, and most are just not worth fixing. You're not going to find a clean fix for this one without basically overhauling the whole game. There are some "update phases," where certain kinds of updates are queued, and then they're executed in a batch while their effects are queued. One example is the interaction between redstone wire and pistons. But to eliminate what you're seeing would require that this kind of queueing happen at all levels. And then the performance hit would be murder. If you want to discuss this further, bring it up on /r/mojira or the EigenCraft Discord.
Especially considering that this is more "slightly annoying" than it is "game breaking" or "data loss," I suggest closing this as Invalid so that attention can be focused on more serious bugs.
relates to MC-161402
affectes 1.15-pre4
The bug is that placing a sign inside the middle of four cacti should break all cacti and not just the cactus that the sign was placed on.
This is due to the update order, at which the cactus that the sign is placed on is updated and checks to see if it should break.
It breaks, then updates the sign and it breaks.
Then the other three cacti are updated and check to see if they should break, but because the sign has already broken when they check, they see no sign and don't break.