changed PH to be able to kill

This commit is contained in:
2024-07-25 19:34:16 -04:00
parent 03a462632f
commit 655a557778

View File

@ -14,7 +14,7 @@ void poison_health::apply(const enum race &race, int &HP, int &ATK, int &DEF,
if (race == DROW)
tmp *= DROW_POTION_MUL;
HP = std::max(HP - tmp, 1);
HP = std::max(HP - tmp, 0);
--remaining_duration;
}
}