Fix Maven build failure (#4779)

This commit is contained in:
abridgedcarp
2022-06-09 21:26:50 +00:00
committed by GitHub
parent c40af913f4
commit d543843235
3 changed files with 6 additions and 4 deletions

View File

@@ -2,12 +2,13 @@ package com.gmail.nossr50.events.fake;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerAnimationEvent;
import org.bukkit.event.player.PlayerAnimationType;
/**
* Called when handling extra drops to avoid issues with NoCheat.
*/
public class FakePlayerAnimationEvent extends PlayerAnimationEvent implements FakeEvent {
public FakePlayerAnimationEvent(Player player) {
super(player);
public FakePlayerAnimationEvent(Player player, PlayerAnimationType playerAnimationType) {
super(player, playerAnimationType);
}
}