mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
/give compatible with "item-enforcement" = off
This commit is contained in:
parent
1885cdf3a2
commit
393f54fe28
@ -151,8 +151,11 @@ class BlockAPI{
|
||||
}
|
||||
|
||||
if($player instanceof Player){
|
||||
$player->addItem($item->getID(), $item->getMetadata(), $item->count);
|
||||
//$this->drop(new Vector3($player->entity->x - 0.5, $player->entity->y, $player->entity->z - 0.5), $item, true);
|
||||
if($this->server->api->getProperty("item-enforcement") === false){
|
||||
$this->drop(new Vector3($player->entity->x - 0.5, $player->entity->y, $player->entity->z - 0.5), $item, true);
|
||||
}else{
|
||||
$player->addItem($item->getID(), $item->getMetadata(), $item->count);
|
||||
}
|
||||
$output .= "Giving ".$item->count." of ".$item->getName()." (".$item->getID().":".$item->getMetadata().") to ".$player->username."\n";
|
||||
}else{
|
||||
$output .= "Unknown player\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user