Implements missing createExplosion methods in FakeWorld (#2818)

This commit is contained in:
Ryan 2019-10-13 17:35:38 -04:00 committed by pop4959
parent bae909ba10
commit f6a70a542e

View file

@ -377,6 +377,21 @@ public class FakeWorld implements World {
public boolean createExplosion(Location lctn, float f, boolean bln) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean createExplosion(double d, double d1, double d2, float f, boolean bln, boolean bln1, Entity entity) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean createExplosion(Location lctn, float f, boolean bln, boolean bln1) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean createExplosion(Location lctn, float f, boolean bln, boolean bln1, Entity entity) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T extends Entity> T spawn(Location lctn, Class<T> type) throws IllegalArgumentException {