コード例 #1
0
ファイル: Human.php プロジェクト: rryy/PocketMine-MP
 public function getDrops()
 {
     $drops = [];
     if ($this->inventory instanceof PlayerInventory) {
         foreach ($this->inventory->getContents() as $item) {
             $drops[] = $item;
         }
     }
     return $drops;
 }
コード例 #2
0
ファイル: Human.php プロジェクト: robske110/ClearSky
 public function getDrops()
 {
     $drops = [];
     if ($this->inventory !== null) {
         foreach ($this->inventory->getContents() as $item) {
             $drops[] = $item;
         }
     }
     return $drops;
 }