mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
Fix Entity.setVelocity
By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
parent
26be6db6d5
commit
ba7e83927e
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
|
||||||
entity.motX = vel.getX();
|
entity.motX = vel.getX();
|
||||||
entity.motY = vel.getY();
|
entity.motY = vel.getY();
|
||||||
entity.motZ = vel.getZ();
|
entity.motZ = vel.getZ();
|
||||||
entity.aY = true;
|
entity.aZ = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public World getWorld() {
|
public World getWorld() {
|
||||||
|
|
Loading…
Reference in a new issue