Remove duplicated tiles from chunk table automatically

This commit is contained in:
Shoghi Cervantes
2014-11-20 21:45:52 +01:00
parent 754e0dbb49
commit 8eb80be691
2 changed files with 6 additions and 8 deletions

View File

@ -21,12 +21,7 @@
namespace pocketmine\block;
abstract class Solid extends Block{
public function __construct($id, $meta = 0, $name = "Unknown"){
parent::__construct($id, $meta, $name);
$this->isSolid = true;
$this->isFullBlock = true;
}
public $isSolid = true;
public $isFullBlock = true;
}