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";
}

View File

@ -28,6 +28,7 @@ the Free Software Foundation, either version 3 of the License, or
class SignItem extends Item{
public function __construct($meta = 0, $count = 1){
$this->block = BlockAPI::get(SIGN_POST);
$this->maxStackSize = 16;
parent::__construct(SIGN, 0, $count, "Sign");
}
}