Bedrock breakeable

This commit is contained in:
Shoghi Cervantes Pueyo 2013-02-06 15:59:51 +01:00
parent 93fa008acb
commit 5bca4242c2

View File

@ -28,7 +28,7 @@ the Free Software Foundation, either version 3 of the License, or
class BedrockBlock extends SolidBlock{
public function __construct(){
parent::__construct(BEDROCK, 0, "Bedrock");
$this->isBreakable = false;
$this->isBreakable = true;//$this->isBreakable = false;
}
}