summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-11 17:36:03 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-11 17:36:03 +0300
commitc4d16b36a373ba5609360e2698372926d7f2dc0f (patch)
tree62633ac84dafbe0a70574f1766105c0a42f10d79 /src/being.cpp
parentd2502060c7f7b31385d2e3d836dbd7e91562a381 (diff)
downloadplus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.gz
plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.bz2
plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.tar.xz
plus-c4d16b36a373ba5609360e2698372926d7f2dc0f.zip
Allow load avatars from avatars.xml
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp
index de5ecc56e..efbfa35c6 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -48,6 +48,7 @@
#include "net/npchandler.h"
#include "net/playerhandler.h"
+#include "resources/avatardb.h"
#include "resources/emotedb.h"
#include "resources/iteminfo.h"
#include "resources/monsterdb.h"
@@ -251,6 +252,12 @@ void Being::setSubtype(const uint16_t subtype)
mYDiff = mInfo->getSortOffsetY();
}
}
+ else if (mType == AVATAR)
+ {
+ mInfo = AvatarDB::get(mSubType);
+ if (mInfo)
+ setupSpriteDisplay(mInfo->getDisplay(), false);
+ }
else if (mType == PET)
{
mInfo = PETDB::get(mId);