diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 87abb78b7..6c07021f6 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -1223,6 +1223,16 @@ public class OfflinePlayer implements Player { throw new UnsupportedOperationException("Not supported yet."); } + @Override + public boolean isGliding() { + return false; + } + + @Override + public void setGliding(boolean b) { + throw new UnsupportedOperationException("Not supported yet."); + } + @Override public T launchProjectile(Class type, Vector vector) { throw new UnsupportedOperationException("Not supported yet.");