Exemple #1
0
 public GMViewItemList(L2PetInstance cha) {
   _playerName = cha.getName();
   _limit = cha.getInventoryLimit();
   for (L2ItemInstance item : cha.getInventory().getItems()) {
     _items.add(item);
   }
 }