Files
PocketMine-MP/src/material/block/solid/Dirt.php
Shoghi Cervantes Pueyo 5938747083 PMF & Multiworld [part 2]
2013-05-15 23:30:22 +02:00

41 lines
876 B
PHP

<?php
/*
-
/ \
/ \
/ PocketMine \
/ MP \
|\ @shoghicp /|
|. \ / .|
| .. \ / .. |
| .. | .. |
| .. | .. |
\ | /
\ | /
\ | /
\ | /
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
*/
class DirtBlock extends SolidBlock{
public function __construct(){
parent::__construct(DIRT, 0, "Dirt");
$this->isActivable = true;
}
public function onActivate(Item $item, Player $player){
if($item->isHoe()){
$this->level->setBlock($this, BlockAPI::get(FARMLAND, 0));
return true;
}
return false;
}
}