diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-21 20:25:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-21 20:25:56 +0300 |
commit | bde5efd020baf48312eb093f120d2b9094d2f994 (patch) | |
tree | aae42f2c5e85f59b0b704a99520bff5b3d9ba7a4 /src/being | |
parent | 70b8dc1a827e878ef899cf9824362706e86f30e5 (diff) | |
download | plus-bde5efd020baf48312eb093f120d2b9094d2f994.tar.gz plus-bde5efd020baf48312eb093f120d2b9094d2f994.tar.bz2 plus-bde5efd020baf48312eb093f120d2b9094d2f994.tar.xz plus-bde5efd020baf48312eb093f120d2b9094d2f994.zip |
Add packet SMSG_WALK_ERROR 0x0b21.
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/localplayer.cpp | 6 | ||||
-rw-r--r-- | src/being/localplayer.h | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 01e4466bf..9f8ad71c4 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -2117,7 +2117,6 @@ void LocalPlayer::updateCoords() break; } } - if (mDrawPath && mShowNavigePath) { tmpLayer->clean(); @@ -2586,6 +2585,11 @@ void LocalPlayer::updateNavigateList() } } +void LocalPlayer::failMove(const int x A_UNUSED, + const int y A_UNUSED) +{ +} + void LocalPlayer::waitFor(const std::string &nick) { mWaitFor = nick; diff --git a/src/being/localplayer.h b/src/being/localplayer.h index b09e63828..5fa17b7f8 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -425,6 +425,9 @@ class LocalPlayer final : public Being, void freezeMoving(const int timeWaitTicks); + void failMove(const int x, + const int y); + protected: void updateCoords() override final; @@ -523,6 +526,7 @@ class LocalPlayer final : public Being, bool mShowNavigePath; bool mAllowRename; bool mFreezed; + bool mAllowNextStep; }; extern LocalPlayer *localPlayer; |