diff options
Diffstat (limited to 'src/being')
-rw-r--r-- | src/being/localplayer.cpp | 7 | ||||
-rw-r--r-- | src/being/localplayer.h | 2 |
2 files changed, 9 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); +} diff --git a/src/being/localplayer.h b/src/being/localplayer.h index 3c0ed4286..732c27c7f 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -421,6 +421,8 @@ class LocalPlayer final : public Being, bool getRename() const { return mAllowRename; } + bool canMove() const; + protected: void updateCoords() override final; |