set client to not show hp if server doesn't support it

master
Perttu Ahola 2011-04-21 19:54:05 +03:00
parent c638442e78
commit 983bf6677d
1 changed files with 3 additions and 0 deletions

View File

@ -277,6 +277,9 @@ LocalPlayer::LocalPlayer():
m_sneak_node(32767,32767,32767),
m_sneak_node_exists(false)
{
// Initialize hp to 0, so that no hearts will be shown if server
// doesn't support health points
hp = 0;
}
LocalPlayer::~LocalPlayer()