--- deliantra/server/server/disease.C 2007/11/25 13:27:11 1.44 +++ deliantra/server/server/disease.C 2007/11/25 13:28:07 1.45 @@ -544,12 +544,12 @@ if (symptom->stats.dam > 0) hit_player (victim, symptom->stats.dam, symptom, symptom->attacktype, 1); else - hit_player (victim, max (1., -victim->stats.maxhp * symptom->stats.dam / 100.0), symptom, symptom->attacktype, 1); + hit_player (victim, max (1, -victim->stats.maxhp * symptom->stats.dam / 100), symptom, symptom->attacktype, 1); if (symptom->stats.maxsp > 0) sp_reduce = symptom->stats.maxsp; else - sp_reduce = max (1, victim->stats.maxsp * symptom->stats.maxsp / 100.0); + sp_reduce = max (1, victim->stats.maxsp * symptom->stats.maxsp / 100); victim->stats.sp = max (0, victim->stats.sp - sp_reduce);