You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
package net.minecraft.entity.ai;
 | 
						|
 | 
						|
import net.minecraft.entity.EntityLivingBase;
 | 
						|
import net.minecraft.entity.passive.EntityTameable;
 | 
						|
 | 
						|
public class EntityAIOwnerHurtByTarget extends EntityAITarget
 | 
						|
{
 | 
						|
    EntityTameable theDefendingTameable;
 | 
						|
    EntityLivingBase theOwnerAttacker;
 | 
						|
    private int field_142051_e;
 | 
						|
    private static final String __OBFID = "CL_00001624";
 | 
						|
 | 
						|
    public EntityAIOwnerHurtByTarget(EntityTameable p_i1667_1_)
 | 
						|
    {
 | 
						|
        super(p_i1667_1_, false);
 | 
						|
        this.theDefendingTameable = p_i1667_1_;
 | 
						|
        this.setMutexBits(1);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns whether the EntityAIBase should begin execution.
 | 
						|
     */
 | 
						|
    public boolean shouldExecute()
 | 
						|
    {
 | 
						|
        if (!this.theDefendingTameable.isTamed())
 | 
						|
        {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            EntityLivingBase entitylivingbase = this.theDefendingTameable.getOwner();
 | 
						|
 | 
						|
            if (entitylivingbase == null)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                this.theOwnerAttacker = entitylivingbase.getAITarget();
 | 
						|
                int i = entitylivingbase.func_142015_aE();
 | 
						|
                return i != this.field_142051_e && this.isSuitableTarget(this.theOwnerAttacker, false) && this.theDefendingTameable.func_142018_a(this.theOwnerAttacker, entitylivingbase);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute a one shot task or start executing a continuous task
 | 
						|
     */
 | 
						|
    public void startExecuting()
 | 
						|
    {
 | 
						|
        this.taskOwner.setAttackTarget(this.theOwnerAttacker);
 | 
						|
        EntityLivingBase entitylivingbase = this.theDefendingTameable.getOwner();
 | 
						|
 | 
						|
        if (entitylivingbase != null)
 | 
						|
        {
 | 
						|
            this.field_142051_e = entitylivingbase.func_142015_aE();
 | 
						|
        }
 | 
						|
 | 
						|
        super.startExecuting();
 | 
						|
    }
 | 
						|
} |