diff --git a/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java b/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java index 1d3be48e98..a42743d4bd 100644 --- a/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java +++ b/paper-api/src/main/java/org/bukkit/event/player/PlayerAnimationEvent.java @@ -7,15 +7,15 @@ import org.bukkit.entity.Player; */ public class PlayerAnimationEvent extends PlayerEvent { - private PlayerAnimationType animationType; + private PlayerAnimationType animationType; - /* - * Construct a new event - * - * @param type The event type - * @param player The player instance - */ - public PlayerAnimationEvent(final Player player) { + /* + * Construct a new event + * + * @param type The event type + * @param player The player instance + */ + public PlayerAnimationEvent(final Player player) { super(Type.PLAYER_ANIMATION, player); // Only supported animation type for now: @@ -30,5 +30,4 @@ public class PlayerAnimationEvent extends PlayerEvent { public PlayerAnimationType getAnimationType() { return animationType; } - -} +} \ No newline at end of file