diff options
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/item.cpp b/src/item.cpp index 2d4183a8b..1dcd2bbcc 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -43,6 +43,7 @@ Item::Item(const int id, const unsigned char color, const bool identified, const bool damaged, + const bool favorite, const bool equipment, const bool equipped) : mId(0), @@ -58,7 +59,7 @@ Item::Item(const int id, mInEquipment(false), mIdentified(identified), mDamaged(damaged), - mFavorite(false) + mFavorite(favorite) { setId(id, color); } |