mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
Build against 1.10
This commit is contained in:
parent
2bf1f24db2
commit
f4fa24cd7f
@ -27,7 +27,6 @@ import java.util.*;
|
||||
|
||||
import static com.earth2me.essentials.I18n.tl;
|
||||
|
||||
|
||||
public class OfflinePlayer implements Player {
|
||||
private final transient Server server;
|
||||
private transient Location location = new Location(null, 0, 0, 0, 0, 0);
|
||||
@ -1118,6 +1117,26 @@ public class OfflinePlayer implements Player {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSilent() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setSilent(boolean b) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasGravity() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGravity(boolean b) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPlayerWeather(WeatherType arg0) {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
|
Loading…
Reference in New Issue
Block a user