Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -368,15 +368,11 @@ public Player getPrevious() {
return tickHistory.get(i - 1);
}

@InfoString.Getter
public BoundingBox3D getBoundingBox() {
return boundingBox;
}

@InfoString.Getter
public Vector3D getBoundingBoxSize() {
return boundingBox.getSize();
}

public Player setBoundingBox(BoundingBox3D boundingBox) {
this.boundingBox = boundingBox;
return this;
Expand All @@ -396,10 +392,6 @@ public BoundingBox3D getLastBoundingBox() {
return getPrevious().getBoundingBox();
}

public Vector3D getLastBoundingBoxSize() {
return getLastBoundingBox().getSize();
}

@InfoString.Getter
public Vector3D getLastPos() {
return lastPos;
Expand Down