mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-21 19:22:59 +01:00
12 lines
299 B
Java
12 lines
299 B
Java
package com.gmail.nossr50.events;
|
|
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.block.BlockBreakEvent;
|
|
|
|
public class FakeBlockBreakEvent extends BlockBreakEvent {
|
|
|
|
public FakeBlockBreakEvent(Block theBlock, Player player) {
|
|
super(theBlock, player);
|
|
}
|
|
} |