From 2642d940baa8730b556bd749539fe9dbca635cbc Mon Sep 17 00:00:00 2001 From: Ben Woo <30431861+benwoo1110@users.noreply.github.com> Date: Wed, 13 Sep 2023 23:32:10 +0800 Subject: [PATCH] Clearer docs for tolerance and radius for getSafeLocation --- .../java/org/mvplugins/multiverse/core/api/BlockSafety.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/mvplugins/multiverse/core/api/BlockSafety.java b/src/main/java/org/mvplugins/multiverse/core/api/BlockSafety.java index fd4dc6e4..e27e476d 100644 --- a/src/main/java/org/mvplugins/multiverse/core/api/BlockSafety.java +++ b/src/main/java/org/mvplugins/multiverse/core/api/BlockSafety.java @@ -57,8 +57,8 @@ public interface BlockSafety { * Gets the next safe location around the given location. * * @param location A {@link Location}. - * @param tolerance The tolerance. - * @param radius The radius. + * @param tolerance The tolerance of how far up and down to search. + * @param radius The radius around given location to search. * @return A safe {@link Location}. */ @Nullable Location getSafeLocation(Location location, int tolerance, int radius);