13
0
geforkt von Mirrors/Paper

Add Block#isPassable

By: blablubbabc <lukas@wirsindwir.de>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2018-10-12 00:54:10 +02:00
Ursprung be0cc7cf03
Commit 6f0acecee5

Datei anzeigen

@ -597,4 +597,9 @@ public class CraftBlock implements Block {
public void removeMetadata(String metadataKey, Plugin owningPlugin) {
getCraftWorld().getBlockMetadata().removeMetadata(this, metadataKey, owningPlugin);
}
@Override
public boolean isPassable() {
return this.getData0().h(world, position).b(); // PAIL getCollisionShape, isEmpty
}
}