Add an isValid() method to Entity. Addresses BUKKIT-810

This commit is contained in:
TomyLobo
2011-11-25 02:09:30 +01:00
committed by Travis Watkins
parent 2b3eaee7d9
commit 945ff9eebb
2 changed files with 11 additions and 0 deletions

View File

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