pocketmine\item\Item::isHoe PHP Method

isHoe() public method

public isHoe ( )
    public function isHoe()
    {
        return false;
    }

Usage Example

コード例 #1
0
ファイル: Dirt.php プロジェクト: PepbookPvP/Genisys
 public function onActivate(Item $item, Player $player = null)
 {
     if ($item->isHoe()) {
         $item->useOn($this);
         $this->getLevel()->setBlock($this, Block::get(Item::FARMLAND, 0), true);
         return true;
     }
     return false;
 }
All Usage Examples Of pocketmine\item\Item::isHoe