本文整理匯總了Java中org.bukkit.block.Block.getChunk方法的典型用法代碼示例。如果您正苦於以下問題:Java Block.getChunk方法的具體用法?Java Block.getChunk怎麽用?Java Block.getChunk使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.bukkit.block.Block
的用法示例。
在下文中一共展示了Block.getChunk方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: CraftBlockState
import org.bukkit.block.Block; //導入方法依賴的package包/類
public CraftBlockState(final Block block) {
this.world = (CraftWorld) block.getWorld();
this.x = block.getX();
this.y = block.getY();
this.z = block.getZ();
this.type = block.getTypeId();
this.light = block.getLightLevel();
this.chunk = (CraftChunk) block.getChunk();
this.flag = 3;
// Cauldron start - save TE data
TileEntity te = world.getHandle().getTileEntity(x, y, z);
if (te != null)
{
nbt = new NBTTagCompound();
te.writeToNBT(nbt);
}
else nbt = null;
// Cauldron end
createData(block.getData());
}
示例2: WaterFowLimitor
import org.bukkit.block.Block; //導入方法依賴的package包/類
@EventHandler
public void WaterFowLimitor(BlockFromToEvent event) {
if(ConfigOptimize.WaterFlowLimitorenable == true){
Block block = event.getBlock();
Chunk chunk = block.getChunk();
if (block.getType() == Material.STATIONARY_WATER || block.getType() == Material.STATIONARY_LAVA) {
if(CheckFast(block.getChunk())){
if(CheckedTimes.get(chunk) == null){
CheckedTimes.put(chunk, 0);
}
CheckedTimes.put(chunk, CheckedTimes.get(chunk) + 1);
if(CheckedTimes.get(chunk) > ConfigOptimize.WaterFlowLimitorPerChunkTimes){
event.setCancelled(true);
}
}else{
ChunkLastTime.put(block.getChunk(), System.currentTimeMillis());
}
}
}
}
示例3: placeSnow
import org.bukkit.block.Block; //導入方法依賴的package包/類
private void placeSnow(final Block block)
{
final Location loc = block.getLocation();
final Chunk chunk = block.getChunk();
placeSnow(chunk, chunk.getChunkSnapshot(true, false, false), Math.abs((chunk.getX() * 16) - loc.getBlockX()), loc.getBlockY(), Math.abs((chunk.getZ() * 16) - loc.getBlockZ()));
}
示例4: SimpleInventoryContainer
import org.bukkit.block.Block; //導入方法依賴的package包/類
public SimpleInventoryContainer(Block block) {
super(block);
this.cachedChunk = block.getChunk();
this.cachedInvHolder = (InventoryHolder) block.getState();
this.cachedInv = cachedInvHolder.getInventory();
updateOtherDoubleChestBlocks();
}
示例5: BrewingStandContainer
import org.bukkit.block.Block; //導入方法依賴的package包/類
public BrewingStandContainer(Block block) {
super(block);
this.cachedChunk = block.getChunk();
this.cachedBrewingStand = (BrewingStand) block.getState();
this.cachedInv = cachedBrewingStand.getInventory();
}
示例6: FurnaceContainer
import org.bukkit.block.Block; //導入方法依賴的package包/類
public FurnaceContainer(Block block) {
super(block);
this.cachedChunk = block.getChunk();
this.cachedFurnace = (Furnace) block.getState();
this.cachedInv = cachedFurnace.getInventory();
}