mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-08 20:10:29 +01:00
Fix compile
This commit is contained in:
parent
d73ec779e0
commit
36b08e9b1d
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user