mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-03 04:55:28 +02:00
Fix Maven build failure (#4779)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user