Fixed bows not getting damaged

This commit is contained in:
Shoghi Cervantes
2014-09-01 11:43:48 +02:00
parent c5626bae34
commit e047b6a870
3 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace pocketmine\item;
class Bow extends Tool{
public function __construct($meta = 0, $count = 1){
parent::__construct(self::BOW, 0, $count, "Bow");
parent::__construct(self::BOW, $meta, $count, "Bow");
}
}