本文整理汇总了Java中org.bukkit.Material.SOIL属性的典型用法代码示例。如果您正苦于以下问题:Java Material.SOIL属性的具体用法?Java Material.SOIL怎么用?Java Material.SOIL使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.bukkit.Material
的用法示例。
在下文中一共展示了Material.SOIL属性的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onPlayerInteractCrops
@EventHandler
public void onPlayerInteractCrops(PlayerInteractEvent event) {
if (event.getAction() == Action.PHYSICAL) {
Block b = event.getClickedBlock();
if (b.getType() == Material.SOIL) {
event.setCancelled(true);
b.setTypeIdAndData(b.getType().getId(), b.getData(), true);
}
if (b.getType() == Material.CROPS) {
event.setCancelled(true);
b.setTypeIdAndData(b.getType().getId(), b.getData(), true);
}
}
}
示例2: EntityFarmChecker
@EventHandler
public void EntityFarmChecker(EntityInteractEvent event){
if(ConfigFunction.ProtectFarmenable){
if(event.getEntityType() != EntityType.PLAYER){
Block block = event.getBlock();
if(block.getType() == Material.SOIL||block.getType() == Material.CROPS){
event.setCancelled(true);
}
}
}
}
示例3: PlayerFarmChecker
@EventHandler
public void PlayerFarmChecker(PlayerInteractEvent event){
if(ConfigFunction.ProtectFarmenable){
if(event.getAction() == Action.PHYSICAL){
Block block = event.getClickedBlock();
if(block.getType() == Material.SOIL||block.getType() == Material.CROPS){
event.setCancelled(true);
}
}
}
}
示例4: soilChangePlayer
@EventHandler
public void soilChangePlayer(PlayerInteractEvent e) {
if(e.getClickedBlock() == null) return;
if ((e.getAction() == Action.PHYSICAL) && (e.getClickedBlock().getType() == Material.SOIL)) {
KingdomFactionsPlayer p = PlayerModule.getInstance().getPlayer(e.getPlayer());
if(p.isVanished()) return;
if(e.isCancelled()) return;
if(!p.canBuild(e.getClickedBlock().getLocation())) {
e.setCancelled(!ProtectionModule.getInstance().tryInfluence(p, 50));
}
}
}
示例5: onJump
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onJump(PlayerInteractEvent e) {
if (!cm.farmProtectEnabled) {
return;
}
// 防止农作物被踩踏
if (e.getAction() == Action.PHYSICAL) {
if (e.getClickedBlock().getType() == Material.SOIL) {
e.setCancelled(true);
}
}
}
示例6: onMobJump
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onMobJump(EntityInteractEvent e) {
if (!cm.farmProtectEnabled) {
return;
}
if (e.getEntityType() == EntityType.PLAYER) {
return;
}
if (e.getBlock().getType() == Material.SOIL) {
e.setCancelled(true);
}
}
示例7: onEntityInteract
@EventHandler
public void onEntityInteract(EntityInteractEvent event) {
if (event.getBlock().getType() == Material.SOIL)
event.setCancelled(true);
}
示例8: onEntityDamageByEntityEvent
@EventHandler
public void onEntityDamageByEntityEvent(EntityInteractEvent event) {
if (this.isPet(event.getEntity()) && event.getBlock().getType() == Material.SOIL) {
event.setCancelled(true);
}
}