Implemented Entity.get/setMomentum

Dieser Commit ist enthalten in:
Dinnerbone 2011-03-04 14:23:45 +00:00
Ursprung 770bb9e3b5
Commit 9a64d7ec1b

Datei anzeigen

@ -177,4 +177,14 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
public CraftServer getServer() {
return server;
}
public Vector getMomentum() {
return new Vector(entity.motX, entity.motY, entity.motZ);
}
public void setMomentum(Vector value) {
entity.motX = value.getX();
entity.motY = value.getY();
entity.motZ = value.getZ();
}
}