Skip to content

Instantly share code, notes, and snippets.

@Coding-Kiwi
Coding-Kiwi / gist:8423575
Created January 14, 2014 18:49
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;}
}