mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 13:40:45 +00:00
no message
This commit is contained in:
parent
dd645d88ea
commit
0d7c49e7e4
1 changed files with 2 additions and 1 deletions
|
@ -13288,8 +13288,9 @@ static boolean PIT_DustDevilLaunch(mobj_t *thing)
|
|||
if (!player)
|
||||
return true;
|
||||
|
||||
if (abs(thing->x - dustdevil->x) > dustdevil->radius || abs(thing->y - dustdevil->y) > dustdevil->radius)
|
||||
if (abs(thing->x - dustdevil->x) > dustdevil->radius || abs(thing->y - dustdevil->y) > dustdevil->radius){
|
||||
return true;
|
||||
}
|
||||
|
||||
if (thing->z + thing->height >= dustdevil->z && dustdevil->z + dustdevil->height >= thing->z) {
|
||||
fixed_t pos = thing->z - dustdevil->z;
|
||||
|
|
Loading…
Reference in a new issue