Fix Mummy's special red fireball attack - it wasn't turning the player into a Mummy

This commit is contained in:
sirlemonhead 2019-11-13 22:32:43 +00:00 committed by Christoph Oelckers
parent 03f6b4c9ec
commit 2e6459d2f6

View file

@ -406,7 +406,7 @@ MOVEEND:
if (hitsprite > -1)
{
HITSPRITE:
if (pSprite->pal == 5 && sprite[hitsprite].statnum != 100)
if (pSprite->pal == 5 && sprite[hitsprite].statnum == 100)
{
short nPlayer = GetPlayerFromSprite(hitsprite);
if (!PlayerList[nPlayer].bIsMummified)