mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-20 16:31:03 +00:00
Don't attract bomb spheres with Attraction shield
This commit is contained in:
parent
db4de0f50e
commit
498c9da859
1 changed files with 1 additions and 1 deletions
|
@ -9686,7 +9686,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
|||
P_RingThinker(mobj);
|
||||
if (mobj->flags2 & MF2_NIGHTSPULL)
|
||||
P_NightsItemChase(mobj);
|
||||
else
|
||||
else if (mobj->type != MT_BOMBSPHERE) // prevent shields from attracting bomb spheres
|
||||
A_AttractChase(mobj);
|
||||
return false;
|
||||
// Flung items
|
||||
|
|
Loading…
Reference in a new issue