예제 #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;
 }