@Override
  public void startExecuting() {
    Int3 portalPosition = ((IHoardDemon) this.taskOwner).getPortalLocation();
    if (portalPosition == null) {
      super.startExecuting();
      return;
    }

    TileEntity portal =
        this.taskOwner.worldObj.getTileEntity(
            portalPosition.xCoord, portalPosition.yCoord, portalPosition.zCoord);

    if ((this.taskOwner.getAITarget() instanceof IHoardDemon
        && portalPosition.equals(
            ((IHoardDemon) this.taskOwner.getAITarget()).getPortalLocation()))) {
      return;
    }

    this.taskOwner.setAttackTarget(this.taskOwner.getAITarget());

    if (this.entityCallsForHelp && this.taskOwner instanceof IHoardDemon) {

      if (portal instanceof TEDemonPortal) {
        ((TEDemonPortal) portal).notifyDemons(taskOwner, this.taskOwner.getAITarget(), 25);
      }

      //            double d0 = this.getTargetDistance();
      //            List list =
      // this.taskOwner.worldObj.getEntitiesWithinAABB(this.taskOwner.getClass(),
      // AxisAlignedBB.getBoundingBox(this.taskOwner.posX, this.taskOwner.posY, this.taskOwner.posZ,
      // this.taskOwner.posX + 1.0D, this.taskOwner.posY + 1.0D, this.taskOwner.posZ +
      // 1.0D).expand(d0, 10.0D, d0));
      //            Iterator iterator = list.iterator();
      //
      //            while (iterator.hasNext())
      //            {
      //                EntityCreature entitycreature = (EntityCreature)iterator.next();
      //
      //                if (this.taskOwner != entitycreature && entitycreature.getAttackTarget() ==
      // null && !entitycreature.isOnSameTeam(this.taskOwner.getAITarget()))
      //                {
      //                    entitycreature.setAttackTarget(this.taskOwner.getAITarget());
      //                }
      //            }
    }

    super.startExecuting();
  }
    protected void setEntityAttackTarget(
        EntityCreature creatureIn, EntityLivingBase entityLivingBaseIn) {
      super.setEntityAttackTarget(creatureIn, entityLivingBaseIn);

      if (creatureIn instanceof EntityPigZombie) {
        ((EntityPigZombie) creatureIn).becomeAngryAt(entityLivingBaseIn);
      }
    }