Added Nether Wart

This commit is contained in:
Dylan K. Taylor
2017-03-17 17:12:36 +00:00
parent 3135fe3c69
commit 11fae493a5
4 changed files with 89 additions and 1 deletions

View File

@ -23,8 +23,11 @@ declare(strict_types=1);
namespace pocketmine\item;
use pocketmine\block\Block;
class NetherWart extends Item{
public function __construct($meta = 0, $count = 1){
$this->block = Block::get(Block::NETHER_WART_PLANT);
parent::__construct(self::NETHER_WART, $meta, $count, "Nether Wart");
}
}