- added Gez's latest bugfix patch.

SVN r1836 (trunk)
This commit is contained in:
Christoph Oelckers 2009-09-15 17:19:30 +00:00
commit e5357d1b65
4 changed files with 9 additions and 5 deletions

View file

@ -5416,7 +5416,7 @@ fixed_t AActor::GetGravity() const
// (left precisely the same as MBF even though it doesn't make much sense.)
bool AActor::IsSentient() const
{
return health > 0 || SeeState != NULL;
return health > 0 && SeeState != NULL;
}