Another fix

This commit is contained in:
Shoghi Cervantes 2013-06-07 19:18:35 +02:00
parent 3023df2033
commit 8e127e60a0
4 changed files with 11 additions and 7 deletions

View File

@ -1348,11 +1348,9 @@ class Player{
default:
$damage = 1;//$this->server->difficulty;
}
$this->server->api->entity->harm($data["target"], $damage, $this->eid);
if($slot->isSword() !== false){
$slot->meta++;
}elseif($slot->isTool() === true){
$slot->meta += 2;
$target->harm($damage, $this->eid);
if($slot->isTool() === true){
$slot->useOn($target);
}
}
}

View File

@ -131,6 +131,12 @@ class Item{
}
public function useOn($object){
if($this->isTool()){
$this->meta++;
}
}
final public function isTool(){
return ($this->isPickaxe() !== false or $this->isAxe() !== false or $this->isShovel() !== false or $this->isSword() !== false or $this->isHoe() !== false);
}

View File

@ -33,7 +33,7 @@ class DirtBlock extends SolidBlock{
public function onActivate(Item $item, Player $player){
if($item->isHoe()){
$item->meta++;
$item->useOn($this);
$this->level->setBlock($this, BlockAPI::get(FARMLAND, 0));
return true;
}

View File

@ -41,7 +41,7 @@ class GrassBlock extends SolidBlock{
TallGrassObject::growGrass($this->level, $this, new Random());
return true;
}elseif($item->isHoe()){
$item->meta++;
$item->useOn($this);
$this->level->setBlock($this, new FarmlandBlock());
return true;
}