mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 10:16:23 +02:00
15 lines
407 B
Java
15 lines
407 B
Java
package com.gmail.nossr50.events.fake;
|
|
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.block.BlockBreakEvent;
|
|
|
|
/**
|
|
* Called when mcMMO breaks a block due to a special ability.
|
|
*/
|
|
public class FakeBlockBreakEvent extends BlockBreakEvent implements FakeEvent {
|
|
public FakeBlockBreakEvent(Block theBlock, Player player) {
|
|
super(theBlock, player);
|
|
}
|
|
}
|