summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.h
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-09-02 19:20:59 +0200
committerHowaner <franzi.moos@googlemail.com>2014-09-02 19:20:59 +0200
commit079634d18cf63abad05db0fda9a4510aa75c0522 (patch)
tree4a9e3da9b43b229d03366a471fc6f2d16dd57995 /src/Mobs/Monster.h
parentAdded a custom name test to the debuggers plugin. (diff)
downloadcuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar.gz
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar.bz2
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar.lz
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar.xz
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.tar.zst
cuberite-079634d18cf63abad05db0fda9a4510aa75c0522.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Monster.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Mobs/Monster.h b/src/Mobs/Monster.h
index a777978f6..1d66d50e5 100644
--- a/src/Mobs/Monster.h
+++ b/src/Mobs/Monster.h
@@ -150,7 +150,7 @@ public:
/** Returns true if the monster has a custom name. */
bool HasCustomName(void) const { return !m_CustomName.empty(); }
- /** Gets the custom name of the monster. If no custom name is set, the function returns a empty string. */
+ /** Gets the custom name of the monster. If no custom name is set, the function returns an empty string. */
const AString & GetCustomName(void) const { return m_CustomName; }
/** Sets the custom name of the monster. You see the name over the monster.
@@ -161,7 +161,7 @@ public:
bool IsCustomNameAlwaysVisible(void) const { return m_CustomNameAlwaysVisible; }
/** Sets the custom name visiblity of this monster.
- If false, you only see the name when you sight the mob. If true, you always see the custom name. */
+ If it's false, you only see the name when you sight the mob. If it's true, you always see the custom name. */
void SetCustomNameAlwaysVisible(bool a_CustomNameAlwaysVisible);
/// Translates MobType enum to a string, empty string if unknown