From be93369a8b4293b6f0ac3bc009759dcf7405e312 Mon Sep 17 00:00:00 2001 From: Craftinators Date: Wed, 15 Mar 2023 03:58:33 -0400 Subject: [PATCH] docs(`PlayerEmoteStopEvent`): add class documentation --- .../com/hibiscusmc/hmccosmetics/api/PlayerEmoteStopEvent.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerEmoteStopEvent.java b/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerEmoteStopEvent.java index abcd4bba..7ffde061 100644 --- a/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerEmoteStopEvent.java +++ b/common/src/main/java/com/hibiscusmc/hmccosmetics/api/PlayerEmoteStopEvent.java @@ -6,6 +6,9 @@ import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; import org.jetbrains.annotations.NotNull; +/** + * Called when a player stops playing an emote + */ public class PlayerEmoteStopEvent extends CosmeticUserEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); private boolean cancel = false;