diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test/java/org/bukkit/plugin/messaging/TestPlayer.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java index 94199465..4a4032b6 100644 --- a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java +++ b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java @@ -637,6 +637,14 @@ public class TestPlayer implements Player { throw new UnsupportedOperationException("Not supported yet."); } + public boolean isFlying() { + throw new UnsupportedOperationException("Not supported yet."); + } + + public void setFlying(boolean value) { + throw new UnsupportedOperationException("Not supported yet."); + } + public boolean addPotionEffect(PotionEffect effect) { throw new UnsupportedOperationException("Not supported yet."); } |