Пример #1
0
 @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 public void onBlockForm(final BlockFormEvent event) {
   final Block b = event.getBlock();
   if (isLogging(b.getWorld(), Logging.SNOWFORM)) {
     final BlockState n = event.getNewState();
     final int type = n.getTypeId();
     if (type == 78 || type == 79) consumer.queueBlockReplace("SnowForm", b.getState(), n);
   }
 }
Пример #2
0
 @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
 public void onEntityExplode(final EntityExplodeEvent event) {
   final WorldConfig wcfg = getWorldConfig(event.getLocation().getWorld());
   if (wcfg != null) {
     final String name;
     if (event.getEntity() == null) {
       if (!wcfg.isLogging(Logging.MISCEXPLOSION)) return;
       name = "Explosion";
     } else if (event.getEntity() instanceof TNTPrimed) {
       if (!wcfg.isLogging(Logging.TNTEXPLOSION)) return;
       name = "TNT";
     } else if (event.getEntity() instanceof Creeper) {
       if (!wcfg.isLogging(Logging.CREEPEREXPLOSION)) return;
       if (logCreeperExplosionsAsPlayerWhoTriggeredThese) {
         final Entity target = ((Creeper) event.getEntity()).getTarget();
         name = target instanceof Player ? ((Player) target).getName() : "Creeper";
       } else name = "Creeper";
     } else if (event.getEntity() instanceof Fireball) {
       if (!wcfg.isLogging(Logging.GHASTFIREBALLEXPLOSION)) return;
       name = "Ghast";
     } else if (event.getEntity() instanceof EnderDragon) {
       if (!wcfg.isLogging(Logging.ENDERDRAGON)) return;
       name = "EnderDragon";
     } else {
       if (!wcfg.isLogging(Logging.MISCEXPLOSION)) return;
       name = "Explosion";
     }
     for (final Block block : event.blockList()) {
       final BlockState bs = block.getState();
       final int type = block.getTypeId();
       if (wcfg.isLogging(Logging.SIGNTEXT) & (type == 63 || type == 68))
         consumer.queueSignBreak(name, (Sign) bs);
       else if (wcfg.isLogging(Logging.CHESTACCESS) && (type == 23 || type == 54 || type == 61))
         consumer.queueContainerBreak(name, bs);
       else consumer.queueBlockBreak(name, bs);
     }
   }
 }