Package net.citizensnpcs.npc.ai

Examples of net.citizensnpcs.npc.ai.BlockBreaker


                }
            }
        });


        final BlockBreaker breaker = BlockBreaker.createWithConfiguration(entity.getLivingEntity(),
                location.getBlock(), config);
        if (breaker.shouldExecute()) {
            TaskRunnable run = new TaskRunnable(breaker);
            run.taskId = Bukkit.getScheduler().scheduleSyncRepeatingTask(DenizenAPI.getCurrentInstance(), run, 0, 1);
        }
    }
View Full Code Here

TOP

Related Classes of net.citizensnpcs.npc.ai.BlockBreaker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.