Fix compile

This commit is contained in:
vemacs 2016-12-12 10:09:43 -06:00
parent d73ec779e0
commit 36b08e9b1d

View File

@ -338,6 +338,11 @@ public class FakeWorld implements World {
throw new UnsupportedOperationException("Not supported yet."); throw new UnsupportedOperationException("Not supported yet.");
} }
@Override
public <T extends Entity> T spawn(Location location, Class<T> aClass, org.bukkit.util.Consumer<T> consumer) throws IllegalArgumentException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override @Override
public FallingBlock spawnFallingBlock(Location location, MaterialData materialData) throws IllegalArgumentException { public FallingBlock spawnFallingBlock(Location location, MaterialData materialData) throws IllegalArgumentException {
throw new UnsupportedOperationException("Not supported yet."); throw new UnsupportedOperationException("Not supported yet.");
@ -595,7 +600,7 @@ public class FakeWorld implements World {
@Override @Override
public void playSound(Location location, Sound sound, SoundCategory soundCategory, float v, float v1) { public void playSound(Location location, Sound sound, SoundCategory soundCategory, float v, float v1) {
} }
@Override @Override
@ -707,4 +712,4 @@ public class FakeWorld implements World {
public List<Entity> getNearbyEntities(Location loc, double x, double y, double z) { public List<Entity> getNearbyEntities(Location loc, double x, double y, double z) {
throw new UnsupportedOperationException("Not supported yet."); throw new UnsupportedOperationException("Not supported yet.");
} }
} }