summaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-10-24 10:58:58 -0600
committerJared Adams <jaxad0127@gmail.com>2009-10-24 10:58:58 -0600
commitc3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b (patch)
tree709fda8a3974b5e73d4cd4d7e688c544ce03ed96 /src/localplayer.h
parent86e5e4c5bd29abcd90d21a64fdea7eac73665356 (diff)
downloadmana-client-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.gz
mana-client-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.bz2
mana-client-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.xz
mana-client-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.zip
REplace instances of TMW with Mana
Diffstat (limited to 'src/localplayer.h')
-rw-r--r--src/localplayer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/localplayer.h b/src/localplayer.h
index 57e1bb35..2c784ac4 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -101,7 +101,7 @@ enum
class LocalPlayer : public Player
{
public:
-#ifdef TMWSERV_SUPPORT
+#ifdef MANASERV_SUPPORT
enum Attribute
{
STR = 0, AGI, DEX, VIT, INT, WIL, CHR
@@ -141,7 +141,7 @@ class LocalPlayer : public Player
*/
Inventory *getStorage() const { return mStorage; }
-#ifdef TMWSERV_SUPPORT
+#ifdef MANASERV_SUPPORT
/**
* Check the player has permission to invite users to specific guild
*/
@@ -226,7 +226,7 @@ class LocalPlayer : public Player
/**
* Sets a new destination for this being to walk to.
*/
-#ifdef TMWSERV_SUPPORT
+#ifdef MANASERV_SUPPORT
void setDestination(int x, int y);
#else
virtual void setDestination(Uint16 x, Uint16 y);
@@ -440,7 +440,7 @@ class LocalPlayer : public Player
Inventory *mInventory;
-#ifdef TMWSERV_SUPPORT
+#ifdef MANASERV_SUPPORT
int mLocalWalkTime; /**< Timestamp used to control keyboard walk
messages flooding */
#endif