Merge pull request #443 from tcooc/patch-8

Fix trees destroying pipes.
This commit is contained in:
CovertJaguar 2012-11-24 15:16:00 -08:00
commit 02662975c1

View file

@ -60,6 +60,11 @@ public class BlockGenericPipe extends BlockContainer {
return false;
}
@Override
public boolean canBeReplacedByLeaves(World world, int x, int y, int z) {
return false;
}
@Override
public boolean renderAsNormalBlock() {
return false;