diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/itemdb.cpp | 2 | ||||
-rw-r--r-- | src/resources/iteminfo.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index c6a854c33..91e82d68b 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -226,7 +226,7 @@ void ItemDB::load() if (id <= -1 && id > -100) colors = "hair"; else - colors = ""; + colors.clear(); } std::string tags[3]; diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index e7c20aa6f..f78674913 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -155,7 +155,7 @@ void ItemInfo::setColorsList(std::string name) if (name.empty()) { mColors = nullptr; - mColorList = ""; + mColorList.clear(); } else { |