diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-01-13 15:33:49 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-01-13 15:33:49 +0000 |
commit | 938e215a848a65281be0fc5cda10dd0872c846a4 (patch) | |
tree | 7b3727bf9f6f2b7a024411e3f599148d41e9258e /src/net/manaserv | |
parent | a40e07c2c86aff20c3b5529228bc519f9cc4c61d (diff) | |
download | mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.gz mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.bz2 mana-938e215a848a65281be0fc5cda10dd0872c846a4.tar.xz mana-938e215a848a65281be0fc5cda10dd0872c846a4.zip |
Supress level up notifications when starting
Diffstat (limited to 'src/net/manaserv')
-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); |