diff options
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 6b50091a..b008a739 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -198,29 +198,6 @@ class LocalPlayer : public Being void event(const std::string &channel, const Mana::Event &event); /** - * set a following player by right clicking. - */ - void setFollow(std::string player) { mPlayerFollowed = player; } - - /** - * setting the next destination of the following, in case of warp - */ - void setNextDest(int x, int y) { mNextDestX = x; mNextDestY = y; } - - int getNextDestX() const { return mNextDestX; } - int getNextDestY() const { return mNextDestY; } - - /** - * Stop following a player. - */ - void cancelFollow() { mPlayerFollowed = ""; } - - /** - * Get the playername followed by the current player. - */ - std::string getFollow() const { return mPlayerFollowed; } - - /** * Tells the engine whether to check * if the Player Name is to be displayed. */ @@ -247,11 +224,6 @@ class LocalPlayer : public Being Being *mTarget; - /** Follow system **/ - std::string mPlayerFollowed; - int mNextDestX; - int mNextDestY; - FloorItem *mPickUpTarget; bool mGoingToTarget; |