SPIGOT-6515: "Un-waterlogging" throws UnsupportedOperationException in some cases

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2021-06-12 08:59:05 +10:00
parent 81163e6137
commit 190b3f8308

View File

@ -20,6 +20,7 @@ import net.minecraft.world.level.TickListEmpty;
import net.minecraft.world.level.biome.BiomeBase;
import net.minecraft.world.level.biome.BiomeManager;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.entity.TileEntity;
import net.minecraft.world.level.block.state.IBlockData;
import net.minecraft.world.level.border.WorldBorder;
@ -180,7 +181,7 @@ public class DummyGeneratorAccess implements GeneratorAccess {
@Override
public IBlockData getType(BlockPosition blockposition) {
throw new UnsupportedOperationException("Not supported yet.");
return Blocks.AIR.getBlockData(); // SPIGOT-6515
}
@Override
@ -215,6 +216,6 @@ public class DummyGeneratorAccess implements GeneratorAccess {
@Override
public boolean a(BlockPosition blockposition, boolean flag, Entity entity, int i) {
throw new UnsupportedOperationException("Not supported yet.");
return false; // SPIGOT-6515
}
}