This commit is contained in:
aozhiwei 2022-10-25 16:01:38 +08:00
parent 4cce360fe4
commit 6f326df431

View File

@ -2485,7 +2485,11 @@ void Creature::AddHp(float hp)
if (IsHuman()) {
Human* hum = (Human*)this;
hum->stats.heal_amount += GetHP() - old_health;
#if 1
room->frame_event.AddHpChg(GetWeakPtrRef());
#else
SyncAroundPlayers(__FILE__, __LINE__, __func__);
#endif
}
}