diff options
Diffstat (limited to 'src/categories.cpp')
| -rw-r--r-- | src/categories.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/categories.cpp b/src/categories.cpp index 7952fed4..01383031 100644 --- a/src/categories.cpp +++ b/src/categories.cpp @@ -160,7 +160,7 @@ void CategoryFactory::saveCategories() QByteArray line;
line.append(QByteArray::number(iter->m_ID)).append("|")
.append(iter->m_Name.toUtf8()).append("|")
- .append(VectorJoin(iter->m_NexusIDs, ",")).append("|")
+ .append(VectorJoin(iter->m_NexusIDs, ",").toUtf8()).append("|")
.append(QByteArray::number(iter->m_ParentID)).append("\n");
categoryFile.write(line);
}
@@ -232,7 +232,7 @@ void CategoryFactory::loadDefaultCategories() addCategory(44, "Equipment", { 1, 44 }, 43);
addCategory(45, "Home/Settlement", { 1, 45 }, 43);
addCategory(10, "Body, Face, & Hair", { 2, 17, 26 }, 0);
- addCategory(39, "Tattoos", { 1, 57 }, 10);
+ addCategory(56, "Tattoos", { 1, 57 }, 10);
addCategory(40, "Character Presets", { 1, 58 }, 0);
addCategory(11, "Items", { 2, 27, 85 }, 0);
addCategory(32, "Mercantile", { 2, 23, 69 }, 0);
|
