diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 2f1f71b1c..1d4dff32d 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -1192,4 +1192,28 @@ public class OfflinePlayer implements Player { throw new UnsupportedOperationException("Not supported yet."); } + + @Override + public void setPlayerWeather(WeatherType arg0) + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public WeatherType getPlayerWeather() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void resetPlayerWeather() + { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public boolean isOnGround() + { + throw new UnsupportedOperationException("Not supported yet."); + } }