diff options
author | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-10-08 23:19:12 +0200 |
---|---|---|
committer | Stefan Dombrowski <stefan@uni-bonn.de> | 2010-10-08 23:19:12 +0200 |
commit | 574bd5fa1ee45a7452d2e85941fa33f946b63eae (patch) | |
tree | e5cb67987ca716837fd498c5430b836250ca1497 /src/localplayer.h | |
parent | ae7711813b236500c14d85de1c8a668a7beee0c1 (diff) | |
download | mana-574bd5fa1ee45a7452d2e85941fa33f946b63eae.tar.gz mana-574bd5fa1ee45a7452d2e85941fa33f946b63eae.tar.bz2 mana-574bd5fa1ee45a7452d2e85941fa33f946b63eae.tar.xz mana-574bd5fa1ee45a7452d2e85941fa33f946b63eae.zip |
Remove the following system
Removed due to unresolved social issues.
In master it had been already removed by Kage in
commit 89f192b9039f9c000515f0a12f4bb9fb55c4691c.
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 2c06dfb5..03fec1f8 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -380,29 +380,6 @@ class LocalPlayer : public Player void optionChanged(const std::string &value); /** - * 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 wether to check * if the Player Name is to be displayed. */ @@ -458,11 +435,6 @@ class LocalPlayer : public Player Being *mTarget; - /** Follow system **/ - std::string mPlayerFollowed; - int mNextDestX; - int mNextDestY; - FloorItem *mPickUpTarget; bool mTrading; |