本文整理匯總了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;
}