diff options
author | madmaxoft <github@xoft.cz> | 2013-09-27 16:31:48 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-27 16:34:01 +0200 |
commit | e5d5896a24695e25278db230a3e909022087d2e2 (patch) | |
tree | 0ece3abb54a810203ce71b94c8421f5ba42e40f8 | |
parent | APIDump: Documented cServer (diff) | |
download | cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar.gz cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar.bz2 cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar.lz cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar.xz cuberite-e5d5896a24695e25278db230a3e909022087d2e2.tar.zst cuberite-e5d5896a24695e25278db230a3e909022087d2e2.zip |
-rw-r--r-- | source/Entities/Entity.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Entities/Entity.h b/source/Entities/Entity.h index a2c99d2a0..c7c362b40 100644 --- a/source/Entities/Entity.h +++ b/source/Entities/Entity.h @@ -234,16 +234,16 @@ public: /// Returns the curently equipped weapon; empty item if none virtual cItem GetEquippedWeapon(void) const { return cItem(); } - /// Returns the currently equipped helmet; empty item if nonte + /// Returns the currently equipped helmet; empty item if none virtual cItem GetEquippedHelmet(void) const { return cItem(); } - /// Returns the currently equipped chestplate; empty item if nonte + /// Returns the currently equipped chestplate; empty item if none virtual cItem GetEquippedChestplate(void) const { return cItem(); } - /// Returns the currently equipped leggings; empty item if nonte + /// Returns the currently equipped leggings; empty item if none virtual cItem GetEquippedLeggings(void) const { return cItem(); } - /// Returns the currently equipped boots; empty item if nonte + /// Returns the currently equipped boots; empty item if none virtual cItem GetEquippedBoots(void) const { return cItem(); } /// Called when the health drops below zero. a_Killer may be NULL (environmental damage) |