diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-11-07 11:47:24 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-11-07 11:47:24 -0700 |
commit | 99be9859a30e84e758ee3bfe7dcc3de33dfa2391 (patch) | |
tree | 49354012582a4c9e9218ebafad429b07b19b2539 /src/player.h | |
parent | 9c1cc1e46fd21ec48809fbb8f64853fcecef2439 (diff) | |
download | mana-99be9859a30e84e758ee3bfe7dcc3de33dfa2391.tar.gz mana-99be9859a30e84e758ee3bfe7dcc3de33dfa2391.tar.bz2 mana-99be9859a30e84e758ee3bfe7dcc3de33dfa2391.tar.xz mana-99be9859a30e84e758ee3bfe7dcc3de33dfa2391.zip |
More eAthena guild stuff
Also some related chenges elsewhere
Diffstat (limited to 'src/player.h')
-rw-r--r-- | src/player.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/player.h b/src/player.h index a1ba1b5c..5cdc35a7 100644 --- a/src/player.h +++ b/src/player.h @@ -26,9 +26,7 @@ class Graphics; class Map; -#ifdef MANASERV_SUPPORT class Guild; -#endif enum Gender { @@ -109,7 +107,6 @@ class Player : public Being virtual void setSpriteColor(unsigned int slot, const std::string &color = ""); -#ifdef MANASERV_SUPPORT /** * Adds a guild to the player. */ @@ -135,8 +132,6 @@ class Player : public Being */ short getNumberOfGuilds(); -#endif - /** * 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 @@ -170,10 +165,8 @@ class Player : public Being std::vector<int> mSpriteIDs; std::vector<std::string> mSpriteColors; -#ifdef MANASERV_SUPPORT // Character guild information std::map<int, Guild*> mGuilds; -#endif bool mIsGM; |