Add LivingEntity.hasLineOfSight. Addresses BUKKIT-1255

This commit is contained in:
TomyLobo
2012-03-21 16:30:35 +01:00
committed by feildmaster
parent e129c8363e
commit 6525a30e74
2 changed files with 13 additions and 0 deletions

View File

@@ -756,4 +756,8 @@ public class TestPlayer implements Player {
public boolean isBlocking() {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean hasLineOfSight(Entity other) {
throw new UnsupportedOperationException("Not supported yet.");
}
}