1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-30 19:28:14 +02:00

SPIGOT-4962: Bubble column blocks not classified as liquid

This commit is contained in:
md_5 2019-05-20 19:27:02 +10:00
parent f498aabe45
commit 401432b995

View file

@ -578,7 +578,7 @@ public class CraftBlock implements Block {
@Override
public boolean isLiquid() {
return (getType() == Material.WATER) || (getType() == Material.LAVA);
return getNMS().getMaterial().isLiquid();
}
@Override