mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-16 09:02:06 +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;
|
return;
|
||||||
|
|
||||||
// make statue intangible upon spawning so you can't stand above the created object for 40 tics
|
// 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)))
|
if (!locvar1 || !(new = P_SpawnMobjFromMobj(actor, 0, 0, 0, locvar1)))
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue