[SPIGOT-3181] Horse setVelocity always resets velocity to zero Created: 12/Apr/17 Updated: 14/Apr/17 Resolved: 14/Apr/17 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Shady | Assignee: | Unassigned |
Resolution: | Invalid | Votes: | 0 |
Labels: | 1.11, 1.8, bug, entity, velocity | ||
Environment: |
Spigot 1.11.2 has this problem... But Spigot 1.8.4 doesn't.. |
Description |
@EventHandler private void onHorseJump(HorseJumpEvent event){ Vector velocity = new Vector(0, 1000, 0); event.getEntity().setVelocity(velocity); } If this code is used on spigot 1.8.4, the horse will fly. The horse will even fly if jumped again in the air. If it's used on 1.11.2, the horse will instantly lose all velocity and fall down.
I think there is a workaround with nms, but I haven't tried yet. |
Comments |
Comment by md_5 [ 14/Apr/17 ] |
I've confirmed that we can't fix this. |
Comment by md_5 [ 12/Apr/17 ] |
Horse jump velocity is determined by the client now. |