Skip to content

Instantly share code, notes, and snippets.

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