diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-07 23:53:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-07 23:53:20 +0300 |
commit | dcc18eba1769a46aeaee2ff441706cf14f3ada4c (patch) | |
tree | 70a8eba874484f3764f8d0d8991b920afba318c9 /src/gui/charcreatedialog.cpp | |
parent | 281644be03765c7fdb038fe0480d974f3526766f (diff) | |
download | plus-dcc18eba1769a46aeaee2ff441706cf14f3ada4c.tar.gz plus-dcc18eba1769a46aeaee2ff441706cf14f3ada4c.tar.bz2 plus-dcc18eba1769a46aeaee2ff441706cf14f3ada4c.tar.xz plus-dcc18eba1769a46aeaee2ff441706cf14f3ada4c.zip |
Add support for default equipment in char creation dialog.v1.2.7.8
Diffstat (limited to 'src/gui/charcreatedialog.cpp')
-rw-r--r-- | src/gui/charcreatedialog.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/charcreatedialog.cpp b/src/gui/charcreatedialog.cpp index 6a2ad0bf3..5611efa4c 100644 --- a/src/gui/charcreatedialog.cpp +++ b/src/gui/charcreatedialog.cpp @@ -82,6 +82,14 @@ CharCreateDialog::CharCreateDialog(CharSelectDialog *parent, int slot): mPlayer = new Being(0, ActorSprite::PLAYER, mRace, nullptr); mPlayer->setGender(GENDER_MALE); + const std::vector<int> &items = CharDB::getDefaultItems(); + int i = 1; + for (std::vector<int>::const_iterator it = items.begin(), + it_end = items.end(); + it != it_end; ++ it, i ++) + { + mPlayer->setSprite(i, *it); + } maxHairColor = CharDB::getMaxHairColor(); minHairColor = CharDB::getMinHairColor(); |