diff --git a/src/main/java/net/minestom/server/collision/BoundingBox.java b/src/main/java/net/minestom/server/collision/BoundingBox.java index 2a8d331e3..1fa011d7e 100644 --- a/src/main/java/net/minestom/server/collision/BoundingBox.java +++ b/src/main/java/net/minestom/server/collision/BoundingBox.java @@ -131,7 +131,7 @@ public final class BoundingBox implements Shape { * @param offset the offset * @return a new bounding box with an offset. */ - public @NotNull BoundingBox wtihOffset(Point offset) { + public @NotNull BoundingBox withOffset(Point offset) { return new BoundingBox(this.width, this.height, this.depth, offset); }