| 424 | } |
| 425 | |
| 426 | Json ContainerObject::writeStoredData() const { |
| 427 | return Object::writeStoredData().setAll({ |
| 428 | {"opened", m_opened.get()}, |
| 429 | {"currentState", m_currentState}, |
| 430 | {"crafting", m_crafting.get()}, |
| 431 | {"craftingProgress", m_craftingProgress.get()}, |
| 432 | {"initialized", m_initialized}, |
| 433 | {"items", m_items->diskStore()}, |
| 434 | {"ageItemsTimer", m_ageItemsTimer.toJson()} |
| 435 | }); |
| 436 | } |
| 437 | |
| 438 | ItemRecipe ContainerObject::recipeForMaterials(List<ItemPtr> const& inputItems) { |
| 439 | auto& root = Root::singleton(); |