SilkSpawners

SilkSpawners

3M Downloads

An interesting piece of code

Nicofisi opened this issue ยท 1 comments

commented
    @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
    public void onBlockBreak(BlockBreakEvent event) {
        if (event.isCancelled()) {
            return;
        }

->

    @EventHandler(priority = EventPriority.HIGHEST)
    public void onBlockBreak(BlockBreakEvent event) {

๐Ÿ‘

Have a nice day :)

commented

Well I'd still like to filter out cancelled events, but I guess one time is enough ;)
Thanks for the hint