diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/beinghandler.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp index 97967eb9..332ac548 100644 --- a/src/net/tmwa/beinghandler.cpp +++ b/src/net/tmwa/beinghandler.cpp @@ -113,7 +113,6 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) Uint16 status; Being *srcBeing, *dstBeing; int hairStyle, hairColor, flag; - std::string player_followed; switch (msg.getId()) { @@ -269,16 +268,6 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) if (!dstBeing) break; - player_followed = player_node->getFollow(); - - if (!player_followed.empty()) - { - if (dstBeing->getName() == player_followed) - { - player_node->setDestination(player_node->getNextDestX(), player_node->getNextDestY()); - } - } - // If this is player's current target, clear it. if (dstBeing == player_node->getTarget()) player_node->stopAttack(); @@ -574,15 +563,6 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) dstBeing->setTileCoords(srcX, srcY); dstBeing->setDestination(dstX, dstY); - player_followed = player_node->getFollow(); - if (!player_followed.empty()) - { - if (dstBeing->getName() == player_followed) - { - player_node->setNextDest(dstX, dstY); - player_node->setDestination(srcX, srcY); - } - } } else { |