mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-11 22:33:15 +01:00
SPIGOT-6515: "Un-waterlogging" throws UnsupportedOperationException in some cases
By: md_5 <git@md-5.net>
This commit is contained in:
parent
81163e6137
commit
190b3f8308
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user