Added files via upload

This commit is contained in:
janavarro95 2016-03-19 21:49:30 -07:00
parent 7393b17216
commit 42beb67029
2 changed files with 3 additions and 1 deletions

View File

@ -129,11 +129,13 @@ namespace BuildHealth
player.MaxHealth += ModConfig.health_increase_upon_lvl_up; player.MaxHealth += ModConfig.health_increase_upon_lvl_up;
data_health_bonus_acumulated += ModConfig.health_increase_upon_lvl_up; data_health_bonus_acumulated += ModConfig.health_increase_upon_lvl_up;
} }
/*
if (player.MaxHealth != data_old_health + data_health_bonus_acumulated + data_ini_health_bonus) if (player.MaxHealth != data_old_health + data_health_bonus_acumulated + data_ini_health_bonus)
{ {
player.MaxHealth = data_old_health + data_health_bonus_acumulated + data_ini_health_bonus; player.MaxHealth = data_old_health + data_health_bonus_acumulated + data_ini_health_bonus;
} }
*/
} }
} }