use of team.cqr.cqrepoured.entity.pathfinding.PathNavigateGroundCQR in project ChocolateQuestRepoured by TeamChocoQuest.
the class AbstractEntityCQR method createNavigation.
@Override
protected PathNavigator createNavigation(World worldIn) {
PathNavigator navigator = new PathNavigateGroundCQR(this, worldIn);
((GroundPathNavigator) navigator).setCanOpenDoors(this.canOpenDoors());
// ((GroundPathNavigator) navigator).setBreakDoors(this.canOpenDoors());
return navigator;
}
Aggregations