diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-12 20:30:46 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-05-12 20:31:24 +0200 |
commit | c6a2f58d221247456946100082a580cce9733917 (patch) | |
tree | 36c3f43d1ea5973537613cf761a3300689c5d31b /src/player.h | |
parent | 057c4592a0260af3efca3f7871abf24d8ed77c5d (diff) | |
download | mana-c6a2f58d221247456946100082a580cce9733917.tar.gz mana-c6a2f58d221247456946100082a580cce9733917.tar.bz2 mana-c6a2f58d221247456946100082a580cce9733917.tar.xz mana-c6a2f58d221247456946100082a580cce9733917.zip |
Some small cleanups and fixed compile with tmwserv support
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/player.h b/src/player.h index af6412d4..330d0c14 100644 --- a/src/player.h +++ b/src/player.h @@ -120,13 +120,12 @@ class Player : public Being #endif /** - * Set the player in party + * Set whether the player in the LocalPlayer's party. Players that are + * in the same party as the local player get their name displayed in + * a different color. */ - void setInParty(bool value); + void setInParty(bool inParty); - /** - * Returns whether player is in the party - */ bool isInParty() const { return mInParty; } /** @@ -138,7 +137,6 @@ class Player : public Being /** * Called when a option (set with config.addListener()) is changed */ - void optionChanged(const std::string &value); protected: |