本文整理汇总了Java中org.bukkit.Material.PISTON_BASE属性的典型用法代码示例。如果您正苦于以下问题:Java Material.PISTON_BASE属性的具体用法?Java Material.PISTON_BASE怎么用?Java Material.PISTON_BASE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.bukkit.Material
的用法示例。
在下文中一共展示了Material.PISTON_BASE属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onPlacePistion
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
public void onPlacePistion(final BlockPlaceEvent e) {
if (!cm.tileLimitEnabled) {
return;
}
Player p = e.getPlayer();
if (p.isOp()) {
return;
}
Material type = e.getBlock().getType();
Material checkType = null;
if (type == Material.PISTON_BASE) {
checkType = Material.PISTON_BASE;
} else if (type == Material.PISTON_STICKY_BASE) {
checkType = Material.PISTON_STICKY_BASE;
}
if (checkType != null) {
int limit = NeverLagUtils.getMaxPermission(p, "neverlag.limit.piston.");
if (limit <= 0) {
limit = cm.tileLimitDefaultPiston;
}
if (isLimit(e.getBlock().getLocation(), Material.DISPENSER, limit)) {
e.setCancelled(true);
p.sendMessage(i18n.tr("message", limit));
}
}
}
示例2: isGeckBuildCorrect
/**
* Checks if the geck structure is correct.
*
* @param center
* The center block.
* @return true if the build is correct, false otherwise.
*/
public boolean isGeckBuildCorrect(Block center) {
BlockFace[] faces = { BlockFace.EAST, BlockFace.WEST, BlockFace.NORTH, BlockFace.SOUTH };
for (BlockFace f : faces) {
if (center.getRelative(f).getType() != Material.PISTON_BASE)
return false;
}
return true;
}
示例3: onBreakBlock
@EventHandler
public void onBreakBlock(BlockBreakEvent event) {
Player player = event.getPlayer();
Block broken = event.getBlock();
Location geckLocation = broken.getRelative(0, -1, 0).getLocation();
if (broken.getType() == Material.LEVER) {
if (main.getGeckObjectManager().getGeckObject(geckLocation) != null) {
main.getGeckObjectManager().removeGeckLocation(geckLocation);
player.sendMessage(ChatColor.RED + "GECK disabled.");
}
} else if (broken.getType() == Material.SPONGE
&& main.getGeckObjectManager().getGeckObject(broken.getLocation()) != null) {
main.getGeckObjectManager().removeGeckLocation(broken.getLocation());
player.sendMessage(ChatColor.RED + "GECK disabled.");
} else if (broken.getType() == Material.PISTON_BASE) {
List<BlockFace> sides = Arrays.asList(BlockFace.EAST, BlockFace.NORTH, BlockFace.WEST, BlockFace.SOUTH);
sides.forEach(side -> {
Location bloc = broken.getRelative(side).getLocation();
if (main.getGeckObjectManager().getGeckObject(bloc) != null) {
main.getGeckObjectManager().removeGeckLocation(bloc);
player.sendMessage(ChatColor.RED + "GECK disabled.");
}
});
}
}
示例4: isDupeBlock
@SuppressWarnings("deprecation")
private boolean isDupeBlock(Material type) {
return Material.PISTON_EXTENSION == type || Material.PISTON_STICKY_BASE == type || Material.PISTON_BASE == type
|| Material.PISTON_MOVING_PIECE == type || Material.PUMPKIN == type || Material.DISPENSER == type
|| Material.DROPPER == type || type.getId() == 165;
}