1.0.2 push
This commit is contained in:
parent
6e4de4f6e9
commit
4070e560d1
17 changed files with 701 additions and 36 deletions
|
@ -0,0 +1,18 @@
|
|||
package WayofTime.alchemicalWizardry.common.entity.mob.ai;
|
||||
|
||||
import net.minecraft.entity.EntityLiving;
|
||||
import net.minecraft.pathfinding.PathNavigate;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class PathNavigateFlying extends PathNavigate
|
||||
{
|
||||
public PathNavigateFlying(EntityLiving par1EntityLiving, World par2World)
|
||||
{
|
||||
super(par1EntityLiving, par2World);
|
||||
}
|
||||
|
||||
public boolean canFlyingNavigate()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue