This commit is contained in:
aozhiwei 2021-07-16 13:54:21 +08:00
parent 6dfa4e81d1
commit 72e0139859

View File

@ -32,9 +32,15 @@ static void InternalCreateBullet(BulletInfo& bullet_info)
if (!bullet_info.c.Get()) {
return;
}
Creature* c = bullet_info.c.Get();
if (c->dead) {
return;
}
if (c->downed) {
return;
}
if (bullet_info.delay_time <= 0) {
int bullet_uniid = 0;
Creature* c = bullet_info.c.Get();
if (c->room->BattleStarted() ||
(c->room->GetGasData().gas_mode == GasJump &&
!c->HasBuffEffect(kBET_Jump))) {