So How would I get check the area around a player for a safe spot to spawn something? Say a cow?
here’s what I have
public class trial{
public getSpace(final Player player, final int radius){
final int radius = 10;
return //something here something here//.distance(player.getLocation().getPosition()) <= radius;
}
}
