diff options
Diffstat (limited to '')
-rw-r--r-- | source/cPlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cPlayer.cpp b/source/cPlayer.cpp index 65b6187a6..2087f7927 100644 --- a/source/cPlayer.cpp +++ b/source/cPlayer.cpp @@ -325,7 +325,7 @@ void cPlayer::Heal( int a_Health ) {
if( m_Health < 20 )
{
- m_Health = MIN(a_Health + m_Health, 20);
+ m_Health = (short) MIN(a_Health + m_Health, 20);
cPacket_UpdateHealth Health;
Health.m_Health = m_Health;
|