diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-05 16:07:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-05 16:07:44 +0300 |
commit | 8480ff2ce8ac1ce1ceba024eddfaeb62a5d20f8d (patch) | |
tree | 5cc8d0097ce680cca550216e2313d1d1cb550cfc /src/being/being.h | |
parent | 3aaf10f021303dd67a2c36bf23f380348b5bdf02 (diff) | |
download | plus-8480ff2ce8ac1ce1ceba024eddfaeb62a5d20f8d.tar.gz plus-8480ff2ce8ac1ce1ceba024eddfaeb62a5d20f8d.tar.bz2 plus-8480ff2ce8ac1ce1ceba024eddfaeb62a5d20f8d.tar.xz plus-8480ff2ce8ac1ce1ceba024eddfaeb62a5d20f8d.zip |
Rename walkMask into blockWalkMask.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/being.h b/src/being/being.h index 929ebf8d9..c50cdf871 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -412,11 +412,11 @@ class Being notfinal : public ActorSprite, /** * Gets the way the object is blocked by other objects. */ - virtual unsigned char getWalkMask() const A_WARN_UNUSED + virtual unsigned char getBlockWalkMask() const A_WARN_UNUSED { if (!mInfo) return 0; - return mInfo->getWalkMask(); + return mInfo->getBlockWalkMask(); } /** |