This commit is contained in:
aozhiwei 2021-04-09 12:02:29 +08:00
parent 10e9a54e33
commit fde9d6062a

View File

@ -169,7 +169,7 @@ void Bullet::ProcBomb()
bool block = false;
if (objects.empty()) {
float distance = (GetPos() - born_pos).Norm();
if (distance >= fly_distance) {
if (distance < fly_distance) {
block = true;
}
}