diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-22 22:09:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-22 22:09:02 +0300 |
commit | 51c9a63a660fe88cfa44d93028e6ae2448fb889d (patch) | |
tree | 8c4b1db548208737a43d52fbe28b99cb5060f017 /src/being/localplayer.cpp | |
parent | bce511aaf8b9d2b5d447f67ba0c05e2f9a92b7ca (diff) | |
download | plus-51c9a63a660fe88cfa44d93028e6ae2448fb889d.tar.gz plus-51c9a63a660fe88cfa44d93028e6ae2448fb889d.tar.bz2 plus-51c9a63a660fe88cfa44d93028e6ae2448fb889d.tar.xz plus-51c9a63a660fe88cfa44d93028e6ae2448fb889d.zip |
Not allow moving from sit state if server not support it.
Diffstat (limited to 'src/being/localplayer.cpp')
-rw-r--r-- | src/being/localplayer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index e2450610c..ec62fe735 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -2703,3 +2703,10 @@ void LocalPlayer::playerDeath() recalcSpritesOrder(); } } + +bool LocalPlayer::canMove() const +{ + return mAction != BeingAction::DEAD && + (serverFeatures->haveMoveWhileSit() || + mAction != BeingAction::SIT); +} |