mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-20 08:20:52 +00:00
Merge branch 'nobombsphereattract' into 'next'
Don't attract bomb spheres with Attraction shield See merge request STJr/SRB2!1953
This commit is contained in:
commit
1a0c931053
1 changed files with 1 additions and 1 deletions
|
@ -9697,7 +9697,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