diff options
-rw-r--r-- | source/game/StarItemDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarItemDatabase.cpp b/source/game/StarItemDatabase.cpp index 200ebc1..4a72ab5 100644 --- a/source/game/StarItemDatabase.cpp +++ b/source/game/StarItemDatabase.cpp @@ -506,7 +506,7 @@ ItemPtr ItemDatabase::tryCreateItem(ItemDescriptor const& descriptor, Maybe<floa } catch (std::exception const& e) { Logger::error("Could not instantiate item '{}'. {}", descriptor, outputException(e, false)); - result = createItem(m_items.get("perfectlygenericitem").type, itemConfig("perfectlygenericitem", {}, {})); + result = createItem(m_items.get("perfectlygenericitem").type, itemConfig("perfectlygenericitem", JsonObject(), {}, {})); } result->setCount(descriptor.count()); |