[SPIGOT-3084] Boat ignore Yaw at teleport Created: 22/Feb/17 Updated: 23/Feb/17 Resolved: 23/Feb/17 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Jan U | Assignee: | Unassigned |
Resolution: | Invalid | Votes: | 0 |
Labels: | None |
Description |
The Boat ignore the Yaw in a Location when the boat teleported b.removePassenger(p);
Location loc = MoveDelayLoc.get(b);
loc.setY(e.getLocation().getY());
b.teleport(loc);
b.setVelocity(new Vector(0,0,0));
b.addPassenger(p);
|
Comments |
Comment by md_5 [ 23/Feb/17 ] |
I can confirm this is the case, Spigot is doing everything correctly, the client is steering the boat back. |
Comment by md_5 [ 23/Feb/17 ] |
I would guess that when you add the player back its instantly steering to the direction the player is |