Пример #1
0
 public function saveNBT()
 {
     $this->namedtag->Items = new Enum("Inventory", []);
     $this->namedtag->Items->setTagType(NBT::TAG_Compound);
     for ($index = 0; $index < $this->getSize(); ++$index) {
         $this->setItem($index, $this->inventory->getItem($index));
     }
 }