diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-24 10:58:58 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-24 10:58:58 -0600 |
commit | c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b (patch) | |
tree | 709fda8a3974b5e73d4cd4d7e688c544ce03ed96 /src/being.cpp | |
parent | 86e5e4c5bd29abcd90d21a64fdea7eac73665356 (diff) | |
download | mana-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.gz mana-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.bz2 mana-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.tar.xz mana-c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b.zip |
REplace instances of TMW with Mana
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/being.cpp b/src/being.cpp index 69e01dba..6542a14b 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -88,7 +88,7 @@ Being::Being(int id, int job, Map *map): mStatusParticleEffects(&mStunParticleEffects, false), mChildParticleEffects(&mStatusParticleEffects, false), mMustResetParticles(false), -#ifdef TMWSERV_SUPPORT +#ifdef MANASERV_SUPPORT mWalkSpeed(6.0f), // default speed in tile per second #else mWalkSpeed(150), @@ -143,7 +143,7 @@ void Being::setDestination(Uint16 destX, Uint16 destY) } #endif -#ifdef TMWSERV_SUPPORT +#ifdef MANASERV_SUPPORT void Being::setDestination(int dstX, int dstY) { mDest.x = dstX; @@ -200,7 +200,7 @@ void Being::setDestination(int dstX, int dstY) setPath(thisPath); } -#endif // TMWSERV_SUPPORT +#endif // MANASERV_SUPPORT void Being::clearPath() { @@ -526,7 +526,7 @@ void Being::logic() mText = 0; } -#ifdef TMWSERV_SUPPORT +#ifdef MANASERV_SUPPORT if (mAction != DEAD) { const Vector dest = (mPath.empty()) ? |