summaryrefslogtreecommitdiffstats
path: root/source/Entity.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-07-07 17:09:05 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-07-07 17:09:05 +0200
commita3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d (patch)
tree555f8bc01382a32af53f112c7ac016073c8cef61 /source/Entity.cpp
parentAdded StringUtils functions to Lua API; added StripColorCodes(); ChatLog now strips color codes from logged messages. (diff)
downloadcuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar.gz
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar.bz2
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar.lz
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar.xz
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.tar.zst
cuberite-a3c8b12ee99ec53fbbf3b36bd71a8f45cf274c1d.zip
Diffstat (limited to 'source/Entity.cpp')
-rw-r--r--source/Entity.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Entity.cpp b/source/Entity.cpp
index d9855afb0..80fe0d266 100644
--- a/source/Entity.cpp
+++ b/source/Entity.cpp
@@ -431,6 +431,15 @@ void cEntity::Heal(int a_HitPoints)
+void cEntity::SetHealth(int a_Health)
+{
+ m_Health = std::max(0, std::min(m_MaxHealth, a_Health));
+}
+
+
+
+
+
void cEntity::Tick(float a_Dt, cChunk & a_Chunk)
{
if (m_AttachedTo != NULL)