Added Stack Count

This commit is contained in:
Shoghi Cervantes Pueyo
2013-03-04 17:01:28 +01:00
parent 474c1d2093
commit a964c0e3ec
2 changed files with 2 additions and 1 deletions

View File

@@ -132,7 +132,7 @@ class BlockAPI{
if(($player = $this->server->api->player->get($username)) !== false){
$this->drop(new Vector3($player->entity->x - 0.5, $player->entity->y, $player->entity->z - 0.5), $item, true);
$output .= "Giving ".$amount." of ".$item->getName()." (".$item->getID().":".$item->getMetadata().") to ".$username."\n";
$output .= "Giving ".$item->count." of ".$item->getName()." (".$item->getID().":".$item->getMetadata().") to ".$username."\n";
}else{
$output .= "Unknown player\n";
}