diff --git a/src/pocketmine/entity/object/FallingBlock.php b/src/pocketmine/entity/object/FallingBlock.php index c563b486e..77940c0d1 100644 --- a/src/pocketmine/entity/object/FallingBlock.php +++ b/src/pocketmine/entity/object/FallingBlock.php @@ -109,7 +109,7 @@ class FallingBlock extends Entity{ $this->flagForDespawn(); $block = $this->world->getBlock($pos); - if($block->getId() > 0 and $block->isTransparent() and !$block->canBeReplaced()){ + if($block->isTransparent() and !$block->canBeReplaced()){ //FIXME: anvils are supposed to destroy torches $this->getWorld()->dropItem($this, $this->block->asItem()); }else{