since boats no longer move when pressing a and d at once (MC-96194) it doesn't make sense it still shows the rowwing animation.
the animation indicates it should move, so the animation should be removed as it doesn't move anymore (MC-96194)
Code analysis by @unknown can be found in this comment.
Comments 4
Please link to this comment in the description
The following is based on decompiled version of Minecraft 1.9 using MCP 9.24 beta. All method and class names are the names used in the decompiled version.
This could for example be solved by either having the method net.minecraft.client.entity.EntityPlayerSP.updateRidden()
pass "forward OR (left AND right)" as forward movement argument. Or the method net.minecraft.entity.item.EntityBoat.func_184443_x()
could set the left paddel in use to "forward OR backwards OR (left AND NOT (left AND right))" (the first "left" switched with "right" for the right paddel).
Can confirm.