/*
* Copyright (c) CovertJaguar, 2014 http://railcraft.info
*
* This code is the property of CovertJaguar
* and may only be used with explicit written
* permission unless otherwise specified on the
* license page at http://railcraft.info/wiki/info:license.
*/
package mods.railcraft.common.plugins.forge;
import java.util.List;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.ai.EntityAIBase;
import net.minecraft.entity.ai.EntityAITasks;
/**
*
* @author CovertJaguar <http://www.railcraft.info/>
*/
public class AIPlugin {
public static boolean addAITask(EntityLiving entity, int priority, EntityAIBase task) {
for (EntityAITasks.EntityAITaskEntry entry : (List<EntityAITasks.EntityAITaskEntry>) entity.tasks.taskEntries) {
if (entry.action.getClass() == task.getClass())
return false;
}
entity.tasks.addTask(priority, task);
return true;
}
}