From 2c4638fa473cca25db3c73ed4eff28611e622e70 Mon Sep 17 00:00:00 2001 From: Tech Date: Mon, 27 Jan 2025 16:27:47 -0500 Subject: [PATCH] fix broken java doc --- .../java/com/hibiscusmc/hmccosmetics/user/CosmeticUser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/user/CosmeticUser.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/user/CosmeticUser.java index 10e5f949..a559b385 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/user/CosmeticUser.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/user/CosmeticUser.java @@ -163,7 +163,7 @@ public class CosmeticUser { /** * Start ticking against the {@link CosmeticUser}. - * @implNote The tick-rate is determined by the {@link Settings#getTickPeriod()}, if it is less-than or equal to 0 + * @implNote The tick-rate is determined by the tick period specified in the configuration, if it is less-than or equal to 0 * there will be no {@link BukkitTask} created, and the {@link CosmeticUser#taskId} will be -1 */ public final void startTicking() { @@ -180,7 +180,7 @@ public class CosmeticUser { /** * Dispatch an operation to happen against this {@link CosmeticUser} * at a pre-determined tick-rate. - * The tick-rate is determined by the {@link Settings#getTickPeriod()}. + * The tick-rate is determined by the tick period specified in the configuration. */ protected void tick() { MessagesUtil.sendDebugMessages("Tick[uuid=" + uniqueId + "]", Level.INFO);