Build against 1.10

This commit is contained in:
Trent Hensler 2016-06-09 10:07:22 -07:00
parent 2bf1f24db2
commit f4fa24cd7f
2 changed files with 21 additions and 2 deletions

View File

@ -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.");

View File

@ -55,7 +55,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.9-R0.1-SNAPSHOT</version>
<version>1.10-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>