Added Player set/getAllowFlight methods. Thanks to Qala for the PR.

This commit is contained in:
Nathan Adams
2012-01-15 10:55:33 +00:00
parent 77bcae7419
commit c84c5a2132
2 changed files with 23 additions and 0 deletions

View File

@@ -597,4 +597,12 @@ public class TestPlayer implements Player {
public void playEffect(EntityEffect type) {
throw new UnsupportedOperationException("Not supported yet.");
}
public boolean getAllowFlight() {
throw new UnsupportedOperationException("Not supported yet.");
}
public void setAllowFlight(boolean flight) {
throw new UnsupportedOperationException("Not supported yet.");
}
}