org.bukkit.event.block.BlockSpreadEvent Java Examples
The following examples show how to use
org.bukkit.event.block.BlockSpreadEvent.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IslandGuard.java From askyblock with GNU General Public License v2.0 | 6 votes |
/** * Prevent fire spread * @param e - event */ @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true) public void onBlockSpread(BlockSpreadEvent e) { if (DEBUG) { plugin.getLogger().info(e.getEventName()); plugin.getLogger().info(e.getSource().getType().toString()); } if (e.getSource().getType() == Material.FIRE) { if (!inWorld(e.getBlock())) { //plugin.getLogger().info("DEBUG: Not in world"); return; } if (actionAllowed(e.getBlock().getLocation(), SettingsFlag.FIRE_SPREAD)) { return; } e.setCancelled(true); } }
Example #2
Source File: BlockTransformListener.java From PGM with GNU Affero General Public License v3.0 | 5 votes |
@EventWrapper public void onBlockSpread(final BlockSpreadEvent event) { // This fires for: fire, grass, mycelium, mushrooms, and vines // Fire is already handled by BlockIgniteEvent if (event.getNewState().getType() != Material.FIRE) { this.callEvent( new BlockTransformEvent(event, event.getBlock().getState(), event.getNewState())); } }
Example #3
Source File: BlockTransformListener.java From ProjectAres with GNU Affero General Public License v3.0 | 5 votes |
@EventWrapper public void onBlockSpread(final BlockSpreadEvent event) { // This fires for: fire, grass, mycelium, mushrooms, and vines // Fire is already handled by BlockIgniteEvent if(event.getNewState().getType() != Material.FIRE) { this.callEvent(new BlockTransformEvent(event, event.getBlock().getState(), event.getNewState())); } }
Example #4
Source File: ChunkEventHelper.java From ClaimChunk with MIT License | 5 votes |
public static void handleSpreadEvent(@Nonnull BlockSpreadEvent e) { if (e.isCancelled()) return; // Only cancel fire spreading if (e.getBlock().getType() == Material.FIRE) { cancelWorldEvent(e.getBlock().getChunk(), e, "blockFireSpread"); } }
Example #5
Source File: BlockListener.java From BedwarsRel with GNU General Public License v3.0 | 5 votes |
@EventHandler(ignoreCancelled = true) public void onSpread(BlockSpreadEvent spread) { if (spread.getBlock() == null) { return; } Game game = BedwarsRel.getInstance().getGameManager() .getGameByLocation(spread.getBlock().getLocation()); if (game == null) { return; } if (game.getState() != GameState.RUNNING) { return; } if (spread.getNewState() == null || spread.getSource() == null) { return; } if (spread.getNewState().getType().equals(Material.FIRE)) { spread.setCancelled(true); return; } if (game.getRegion().isPlacedBlock(spread.getSource())) { game.getRegion().addPlacedBlock(spread.getBlock(), spread.getBlock().getState()); } else { game.getRegion().addPlacedUnbreakableBlock(spread.getBlock(), spread.getBlock().getState()); } }
Example #6
Source File: DWorldListener.java From DungeonsXL with GNU General Public License v3.0 | 5 votes |
@EventHandler(ignoreCancelled = true, priority = EventPriority.HIGHEST) public void onBlockSpread(BlockSpreadEvent event) { Block block = event.getSource(); if (plugin.isInstance(block.getWorld()) && VanillaItem.VINE.is(block)) { event.setCancelled(true); } }
Example #7
Source File: ShopItemListener.java From ShopChest with MIT License | 5 votes |
@EventHandler(priority = EventPriority.HIGH) public void onBlockSpread(BlockSpreadEvent e) { Block newBlock = e.getNewState().getBlock(); if (shopUtils.isShop(newBlock.getLocation()) || shopUtils.isShop(newBlock.getRelative(BlockFace.DOWN).getLocation())) { e.setCancelled(true); } }
Example #8
Source File: BukkitPlotListener.java From PlotMe-Core with GNU General Public License v3.0 | 5 votes |
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true) public void onBlockSpread(BlockSpreadEvent event) { Location location = BukkitUtil.adapt(event.getBlock().getLocation()); if (manager.isPlotWorld(location)) { PlotId id = manager.getPlotId(location); if (id == null) { event.setCancelled(true); } else { event.setCancelled(api.isPlotLocked(id)); } } }
Example #9
Source File: EventForwarder.java From BlueMap with MIT License | 4 votes |
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) public void onBlockChange(BlockSpreadEvent evt) { onBlockChange(evt.getBlock().getLocation()); }
Example #10
Source File: BlockEventHandler.java From GriefDefender with MIT License | 4 votes |
@EventHandler(priority = EventPriority.LOWEST) public void onBlockSpreadEvent(BlockSpreadEvent event) { CommonBlockEventHandler.getInstance().handleBlockSpread(event, event.getSource(), event.getNewState()); }
Example #11
Source File: EnvironmentControlListener.java From ProjectAres with GNU Affero General Public License v3.0 | 4 votes |
@EventHandler(priority = EventPriority.HIGH) public void noSpread(final BlockSpreadEvent event) { event.setCancelled(true); }
Example #12
Source File: CancellableChunkEvents.java From ClaimChunk with MIT License | 4 votes |
@EventHandler public void onFireSpread(BlockSpreadEvent e) { if (e != null) { ChunkEventHelper.handleSpreadEvent(e); } }
Example #13
Source File: GlobalProtectionListener.java From DungeonsXL with GNU General Public License v3.0 | 4 votes |
@EventHandler(ignoreCancelled = true, priority = EventPriority.HIGHEST) public void onBlockSpread(BlockSpreadEvent event) { if (DPortal.getByBlock(plugin, event.getBlock()) != null) { event.setCancelled(true); } }
Example #14
Source File: BlockFire.java From Carbon with GNU Lesser General Public License v3.0 | 4 votes |
@SuppressWarnings("deprecation") @Override public void a(World world, int i, int j, int k, Random random) { if(world.getGameRules().getBoolean("doFireTick")) { boolean flag = world.getType(i, j - 1, k) == Blocks.NETHERRACK; if(((world.worldProvider instanceof WorldProviderTheEnd)) && (world.getType(i, j - 1, k) == Blocks.BEDROCK)) { flag = true; } if(!canPlace(world, i, j, k)) { fireExtinguished(world, i, j, k); } if((!flag) && (world.Q()) && ((world.isRainingAt(i, j, k)) || (world.isRainingAt(i - 1, j, k)) || (world.isRainingAt(i + 1, j, k)) || (world.isRainingAt(i, j, k - 1)) || (world.isRainingAt(i, j, k + 1)))) { fireExtinguished(world, i, j, k); } else { int l = world.getData(i, j, k); if(l < 15) { world.setData(i, j, k, l + random.nextInt(3) / 2, 4); } world.a(i, j, k, this, a(world) + random.nextInt(10)); if((!flag) && (!e(world, i, j, k))) { if((!World.a(world, i, j - 1, k)) || (l > 3)) { fireExtinguished(world, i, j, k); } } else if((!flag) && (!e(world, i, j - 1, k)) && (l == 15) && (random.nextInt(4) == 0)) { fireExtinguished(world, i, j, k); } else { boolean flag1 = world.z(i, j, k); byte b0 = 0; if(flag1) { b0 = -50; } a(world, i + 1, j, k, 300 + b0, random, l); a(world, i - 1, j, k, 300 + b0, random, l); a(world, i, j - 1, k, 250 + b0, random, l); a(world, i, j + 1, k, 250 + b0, random, l); a(world, i, j, k - 1, 300 + b0, random, l); a(world, i, j, k + 1, 300 + b0, random, l); for(int i1 = i - 1; i1 <= i + 1; i1++) { for(int j1 = k - 1; j1 <= k + 1; j1++) { for(int k1 = j - 1; k1 <= j + 4; k1++) { if((i1 != i) || (k1 != j) || (j1 != k)) { int l1 = 100; if(k1 > j + 1) { l1 += (k1 - (j + 1)) * 100; } int i2 = m(world, i1, k1, j1); if(i2 > 0) { int j2 = (i2 + 40 + world.difficulty.a() * 7) / (l + 30); if(flag1) { j2 /= 2; } if((j2 > 0) && (random.nextInt(l1) <= j2) && ((!world.Q()) || (!world.isRainingAt(i1, k1, j1))) && (!world.isRainingAt(i1 - 1, k1, k)) && (!world.isRainingAt(i1 + 1, k1, j1)) && (!world.isRainingAt(i1, k1, j1 - 1)) && (!world.isRainingAt(i1, k1, j1 + 1))) { int k2 = l + random.nextInt(5) / 4; if(k2 > 15) { k2 = 15; } if((world.getType(i1, k1, j1) != this) && (!CraftEventFactory.callBlockIgniteEvent(world, i1, k1, j1, i, j, k).isCancelled())) { Server server = world.getServer(); org.bukkit.World bworld = world.getWorld(); BlockState blockState = bworld.getBlockAt(i1, k1, j1).getState(); blockState.setTypeId(Block.getId(this)); blockState.setData(new MaterialData(Block.getId(this), (byte) k2)); BlockSpreadEvent spreadEvent = new BlockSpreadEvent(blockState.getBlock(), bworld.getBlockAt(i, j, k), blockState); server.getPluginManager().callEvent(spreadEvent); if(!spreadEvent.isCancelled()) { blockState.update(true); } } } } } } } } } } } }
Example #15
Source File: BlockEventRegion.java From CardinalPGM with MIT License | 4 votes |
@EventHandler public void onBlockSpread(BlockSpreadEvent event) { if (filter.evaluate(event.getBlock(), event).equals(FilterState.DENY) && region.contains(new BlockRegion(null, event.getBlock().getLocation().toVector()))) { event.setCancelled(true); } }