13 lines
414 B
Java
Executable file
13 lines
414 B
Java
Executable file
package common.ai;
|
|
|
|
import common.entity.Entity;
|
|
import common.entity.types.EntityLiving;
|
|
|
|
public class EntityAIWatchClosest2 extends EntityAIWatchClosest
|
|
{
|
|
public EntityAIWatchClosest2(EntityLiving entitylivingIn, Class <? extends Entity > watchTargetClass, float maxDistance, float chanceIn)
|
|
{
|
|
super(entitylivingIn, watchTargetClass, maxDistance, chanceIn);
|
|
this.setMutexBits(3);
|
|
}
|
|
}
|