Skip to content

Instantly share code, notes, and snippets.

@rogermb
Forked from Coding-Kiwi/gist:8423575
Last active January 3, 2016 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogermb/8424329 to your computer and use it in GitHub Desktop.
Save rogermb/8424329 to your computer and use it in GitHub Desktop.
private static final boolean seesMoon(LivingEntity e) {
final BlockIterator bi = new BlockIterator(e.getWorld(), e.getEyeLocation().toVector(),
e.getLocation().getDirection(), 0.0, 200);
while (bi.hasNext()) {
final Block block = bi.next();
if (block.getType() != Material.AIR) {
if (block.getType() != Material.BEDROCK || bi.hasNext()) {
return false;
}
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment