This commit is contained in:
aozhiwei 2023-03-17 15:07:57 +08:00
parent 8a6fd57c7c
commit 45f73f5815
2 changed files with 6 additions and 0 deletions

View File

@ -82,6 +82,9 @@ void Android::InternalUpdate(int delta_time)
if (a8::HasBitFlag(status, CS_Disable)) {
return;
}
if (poisoning) {
UpdatePoisoning();
}
if (action_type != AT_None) {
UpdateAction();
}

View File

@ -68,6 +68,9 @@ void CondAddBuff::ProcBulletHit()
{
IBullet* bullet = args.Get<IBullet*>(0);
Creature* c = args.Get<Creature*>(0);
if (is_same_target ) {
}
})
);
}