mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 05:54:43 +01:00
Fix Entity.setVelocity
This commit is contained in:
parent
09cfbfbf73
commit
c16ba1f940
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