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

@ -38,6 +38,7 @@ import com.sk89q.worldedit.world.block.BlockStateHolder;
import com.sk89q.worldedit.world.block.BlockType;
import com.sk89q.worldedit.world.weather.WeatherType;
import java.io.IOException;
import java.util.List;
import java.util.Set;
import javax.annotation.Nullable;
@ -319,4 +320,9 @@ public class WorldWrapper extends AbstractWorld {
public BiomeType getBiome(BlockVector3 position) {
return parent.getBiome(position);
}
@Override
public void flush() {
parent.flush();
}
}