示例#1
0
 public function getDrops()
 {
     $drops = [];
     if ($this->inventory instanceof PlayerInventory) {
         foreach ($this->inventory->getContents() as $item) {
             $drops[] = $item;
         }
     }
     return $drops;
 }
示例#2
0
 public function getDrops()
 {
     $drops = [];
     if ($this->inventory !== null) {
         foreach ($this->inventory->getContents() as $item) {
             $drops[] = $item;
         }
     }
     return $drops;
 }