Bonemeal usage count

This commit is contained in:
Shoghi Cervantes 2013-06-07 19:25:23 +02:00
parent 8e127e60a0
commit 51f4faf22e
4 changed files with 4 additions and 0 deletions

View File

@ -76,6 +76,7 @@ class MelonStemBlock extends FlowableBlock{
if($item->getID() === DYE and $item->getMetadata() === 0x0F){ //Bonemeal
$this->meta = 0x07;
$this->level->setBlock($this, $this);
$item->count--;
return true;
}
return false;

View File

@ -55,6 +55,7 @@ class SaplingBlock extends FlowableBlock{
public function onActivate(Item $item, Player $player){
if($item->getID() === DYE and $item->getMetadata() === 0x0F){ //Bonemeal
TreeObject::growTree($this->level, $this, new Random(), $this->meta & 0x03);
$item->count--;
return true;
}
return false;

View File

@ -45,6 +45,7 @@ class WheatBlock extends FlowableBlock{
if($item->getID() === DYE and $item->getMetadata() === 0x0F){ //Bonemeal
$this->meta = 0x07;
$this->level->setBlock($this, $this);
$item->count--;
return true;
}
return false;

View File

@ -38,6 +38,7 @@ class GrassBlock extends SolidBlock{
public function onActivate(Item $item, Player $player){
if($item->getID() === DYE and $item->getMetadata() === 0x0F){
$item->count--;
TallGrassObject::growGrass($this->level, $this, new Random());
return true;
}elseif($item->isHoe()){