@Override
 public void send(Player player) {
   // Get packet class
   Class<?> packetClass = ReflectionAPI.getNmsClass("PacketPlayOutBlockBreakAnimation");
   // Create packet
   Object packet =
       ReflectionAPI.newInstance(
           ReflectionAPI.getConstructor(
               packetClass,
               Integer.class,
               ReflectionAPI.getNmsClass("BlockPosition"),
               Integer.class),
           this.entityId,
           BlockPositionWrapper.fromLocation(this.blockLocation),
           this.destroyStage);
   // Send the packet.
   ReflectionAPI.NmsClass.sendPacket(player, packet);
 }