diff options
author | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-07-19 22:45:23 +0000 |
---|---|---|
committer | Lloyd Bryant <lloyd_bryant@netzero.net> | 2008-07-19 22:45:23 +0000 |
commit | 1e0d803e1b6ba168874522bba11ccd7dfa7503c2 (patch) | |
tree | a8c123d4bed0119b26b94c37c2d6a3e616c051c6 /src | |
parent | e3fef730b69e4edc328e6105ea48b9774631563d (diff) | |
download | mana-1e0d803e1b6ba168874522bba11ccd7dfa7503c2.tar.gz mana-1e0d803e1b6ba168874522bba11ccd7dfa7503c2.tar.bz2 mana-1e0d803e1b6ba168874522bba11ccd7dfa7503c2.tar.xz mana-1e0d803e1b6ba168874522bba11ccd7dfa7503c2.zip |
Pulled the teeth from the stop walking packet handler
Diffstat (limited to 'src')
-rw-r--r-- | src/net/beinghandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/beinghandler.cpp b/src/net/beinghandler.cpp index f48e7751..f3c0cfb4 100644 --- a/src/net/beinghandler.cpp +++ b/src/net/beinghandler.cpp @@ -427,13 +427,18 @@ void BeingHandler::handleMessage(MessageIn *msg) if (dstBeing) { dstBeing->mX = msg->readInt16(); dstBeing->mY = msg->readInt16(); + /* + * I'm deactivating this - players are reporting that + * this makes things *worse*, not better. if (dstBeing->mAction == Being::WALK) { dstBeing->mFrame = 0; dstBeing->setAction(Being::STAND); } + */ } else { logger->log("0x0088: Non-existent being %d", id); } + break; case SMSG_PLAYER_MOVE_TO_ATTACK: |