EndPortal meta and Endstone breaktime

This commit is contained in:
Intyre
2014-08-21 19:26:41 +02:00
parent 532b12c6c0
commit ecc9e1d223
2 changed files with 19 additions and 2 deletions

View File

@ -24,8 +24,8 @@ namespace pocketmine\block;
use pocketmine\item\Item;
class EndPortal extends Solid{
public function __construct(){
parent::__construct(self::END_PORTAL, 0, "End Portal");
public function __construct($meta = 0){
parent::__construct(self::END_PORTAL, $meta, "End Portal");
$this->hardness = 18000000;
}
}