當前位置: 首頁>>代碼示例>>Java>>正文


Java Material.PISTON_BASE屬性代碼示例

本文整理匯總了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));
		}
	}
}
 
開發者ID:jiongjionger,項目名稱:NeverLag,代碼行數:27,代碼來源:TilesLimiter.java

示例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;
}
 
開發者ID:kadeska,項目名稱:MT_Core,代碼行數:16,代碼來源:GeckManager.java

示例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.");
			}
		});
	}
}
 
開發者ID:kadeska,項目名稱:MT_Core,代碼行數:29,代碼來源:GeckPowerListener.java

示例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;
}
 
開發者ID:jiongjionger,項目名稱:NeverLag,代碼行數:6,代碼來源:AntiInfiniteRail.java


注:本文中的org.bukkit.Material.PISTON_BASE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。