Updated the BlockAPI::drop method

This commit is contained in:
Shoghi Cervantes Pueyo
2013-03-04 16:50:11 +01:00
parent 326864f889
commit 287fa7e551
6 changed files with 27 additions and 28 deletions

View File

@@ -25,7 +25,7 @@ the Free Software Foundation, either version 3 of the License, or
*/
abstract class Block{
abstract class Block extends Vector3{
public static $class = array(
AIR => "AirBlock",
STONE => "StoneBlock",
@@ -183,7 +183,7 @@ abstract class Block{
}
final public function __toString(){
return $this->name ." (".$this->id.":".$this->meta.")";
return "Block ". $this->name ." (".$this->id.":".$this->meta.")";
}
abstract function isBreakable(Item $item, Player $player);

View File

@@ -128,7 +128,7 @@ class Item{
}
final public function __toString(){
return $this->name ." (".$this->id.":".$this->meta.")";
return "Item ". $this->name ." (".$this->id.":".$this->meta.")";
}
public function getDestroySpeed(Block $block, Player $player){