diff options
Diffstat (limited to 'src/net/manaserv/charhandler.cpp')
-rw-r--r-- | src/net/manaserv/charhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/manaserv/charhandler.cpp b/src/net/manaserv/charhandler.cpp index 06c81c9e..622fceaa 100644 --- a/src/net/manaserv/charhandler.cpp +++ b/src/net/manaserv/charhandler.cpp @@ -166,7 +166,7 @@ void CharHandler::handleMessage(Net::MessageIn &msg) for (int i = 0; i < 7; i++) { - tempPlayer->setAttributeBase(i, info.attr[i]); + tempPlayer->setAttributeBase(i, info.attr[i], false); } mCharInfo->setEntry(tempPlayer); @@ -341,7 +341,7 @@ void CharHandler::getCharacters() for (int i = 0; i < 7; i++) { - tempPlayer->setAttributeBase(i, info.attr[i]); + tempPlayer->setAttributeBase(i, info.attr[i], false); } mCharInfo->setEntry(tempPlayer); |