- fixed: Poison clouds spawned by the PoisonShroom should not be pushable by the Disc of Repulsion.

SVN r2350 (trunk)
This commit is contained in:
Christoph Oelckers 2010-05-30 20:12:32 +00:00
commit eadc539bc6
4 changed files with 5 additions and 2 deletions

View file

@ -1149,7 +1149,8 @@ bool PIT_CheckThing (AActor *thing, FCheckPosition &tm)
}
solid = (thing->flags & MF_SOLID) &&
!(thing->flags & MF_NOCLIP) &&
(tm.thing->flags & MF_SOLID);
((tm.thing->flags & MF_SOLID) || (tm.thing->flags6 & MF6_BLOCKEDBYSOLIDACTORS));
// Check for special pickup
if ((thing->flags & MF_SPECIAL) && (tm.thing->flags & MF_PICKUP)
// [RH] The next condition is to compensate for the extra height