The bug
If you dismount a horse in mid jump, the horse will continue to do the jump animation even after landing on the ground for around 10 seconds. The horse will even start to walk away stuck in the animation until it ends.
How to reproduce
Tame a horse and put a saddle on it
Start riding it
Hold the jump key (space)
Release the jump key and at the same time press the dismount key (shift)
❌ The horse remains in the jump animation
The reason (by MC-104523)
The following is based on a decompiled version of Minecraft 1.9 using MCP 9.24 beta.
I assume that the reason for this is that rearing is only done client side. The method net.minecraft.entity.passive.EntityHorse.onUpdate()
contains a part that causes the horse to stop rearing. The following conditions are used. Keep in mind that they are all required and in Java if one condition fails all following conditions are not tested.
If controlling passenger is a player:
True condition: Player is client player
False condition: Code is run by server
Horse is rearing for more than 0 ticks
Add one to horse rearing time, new value has to be greater than 20
If all these conditions are met the rearing value is set to false. This means that as soon as the player dismounts the horse, the rearing time stops incrementing.
When the client receives a SPacketEntityMetadata
packet, the rearing state updates, because the value if the horse is rearing or not is stored with other states in the data watcher as one value (single bits of the value representing the value of the states) and rearing is only client side.
Removing the condition that the controlling passenger has to be a player would probably fix this bug.
Confirmed for 1.9-pre2.