This commit is contained in:
aozhiwei 2023-10-25 11:01:38 +08:00
parent d4ac546131
commit 935b4e4980

View File

@ -1136,6 +1136,7 @@ void Creature::Initialize()
if (!dead && !poisoning) { if (!dead && !poisoning) {
if (GetHP() + 1 < GetMaxHP()) { if (GetHP() + 1 < GetMaxHP()) {
AddHp(GetMaxHP() * mt::Param::s().nature_recover_hp_rate); AddHp(GetMaxHP() * mt::Param::s().nature_recover_hp_rate);
TryAddBuff(this, 7040);
} }
} }
} }