Merge of hatebourne's stuff

This commit is contained in:
KimLS
2013-06-12 12:11:56 -07:00
parent 29c0c4801c
commit 0dbd0478c0
6 changed files with 14 additions and 5 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ int32 Client::CalcMaxHP() {
max_hp += GroupLeadershipAAHealthEnhancement();
max_hp += max_hp * (spellbonuses.MaxHPChange + itembonuses.MaxHPChange) / 10000;
max_hp += max_hp * ((spellbonuses.MaxHPChange + itembonuses.MaxHPChange) / 10000.0f);
if (cur_hp > max_hp)
cur_hp = max_hp;