Fix compile

This commit is contained in:
vemacs 2016-03-28 10:36:02 -06:00
parent 5cddb84a58
commit 8167002092
1 changed files with 30 additions and 0 deletions

View File

@ -1108,6 +1108,16 @@ public class OfflinePlayer implements Player {
return false;
}
@Override
public void setInvulnerable(boolean b) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean isInvulnerable() {
return false;
}
@Override
public void setPlayerWeather(WeatherType arg0) {
throw new UnsupportedOperationException("Not supported yet.");
@ -1233,6 +1243,26 @@ public class OfflinePlayer implements Player {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void setAI(boolean b) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean hasAI() {
return false;
}
@Override
public void setCollidable(boolean b) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean isCollidable() {
return false;
}
@Override
public <T extends Projectile> T launchProjectile(Class<? extends T> type, Vector vector) {
throw new UnsupportedOperationException("Not supported yet.");