Fix wna when used internally

This commit is contained in:
dordsor21
2021-01-09 21:27:55 +00:00
parent 6f0180447f
commit 6bc3dd2293
18 changed files with 324 additions and 41 deletions

View File

@ -48,6 +48,7 @@ import com.sk89q.worldedit.world.block.BlockTypes;
import com.sk89q.worldedit.world.weather.WeatherType;
import com.sk89q.worldedit.world.weather.WeatherTypes;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Set;
@ -233,4 +234,7 @@ public class NullWorld extends AbstractWorld {
public boolean regenerate(Region region, Extent extent, RegenOptions options) {
return false;
}
@Override
public void flush() {}
}