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

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot
2012-01-15 10:55:33 +00:00
parent 8670d01e58
commit 768732a914
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.");
}
}