This commit is contained in:
aozhiwei 2024-01-16 17:48:53 +08:00
parent ca17f0644b
commit 1ff2dfb5f4

View File

@ -1130,7 +1130,7 @@ void Creature::Initialize()
[this] (int event, const a8::Args* args) mutable
{
if (a8::TIMER_EXEC_EVENT == event) {
if (!dead && !poisoning) {
if (!dead && !poisoning && !downed) {
if (GetHP() + 1 < GetMaxHP()) {
AddHp(GetMaxHP() * mt::Param::s().nature_recover_hp_rate);
TryAddBuff(this, kRecoverHpEffectBuffId);