mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fixed: Used the wrong actor's radius in P_Thing_Projectile() to get the maxdist for P_CheckMissileSpawn().
SVN r4196 (trunk)
This commit is contained in:
parent
e4127111b1
commit
06445e8181
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ nolead: mobj->angle = R_PointToAngle2 (mobj->x, mobj->y, targ->x, targ->y);
|
|||
}
|
||||
if (mobj->flags & MF_MISSILE)
|
||||
{
|
||||
if (P_CheckMissileSpawn (mobj, source->radius))
|
||||
if (P_CheckMissileSpawn (mobj, spot->radius))
|
||||
{
|
||||
rtn = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue