mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-21 20:11:12 +00:00
change |=
to &=
This commit is contained in:
parent
aa8410c612
commit
1fb6adf390
1 changed files with 1 additions and 1 deletions
|
@ -1406,7 +1406,7 @@ void A_StatueBurst(mobj_t *actor)
|
|||
return;
|
||||
|
||||
// make statue intangible upon spawning so you can't stand above the created object for 40 tics
|
||||
actor->flags |= ~MF_SOLID;
|
||||
actor->flags &= ~MF_SOLID;
|
||||
|
||||
if (!locvar1 || !(new = P_SpawnMobjFromMobj(actor, 0, 0, 0, locvar1)))
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue