diff --git a/source/games/blood/src/actor.cpp b/source/games/blood/src/actor.cpp index 6937f6fa4..786425833 100644 --- a/source/games/blood/src/actor.cpp +++ b/source/games/blood/src/actor.cpp @@ -5858,7 +5858,7 @@ static void actCheckThings() #ifdef NOONE_EXTENSIONS case kModernThingThrowableRock: seqSpawn(24, actor, -1); - if (hit.type = kHitSprite) + if (hit.type == kHitSprite) { pSprite->xrepeat = 32; pSprite->yrepeat = 32; @@ -5868,7 +5868,7 @@ static void actCheckThings() #endif case kThingBone: seqSpawn(24, actor, -1); - if (hit.type = kHitSprite) + if (hit.type == kHitSprite) { actDamageSprite(actor->GetOwner(), hit.actor, kDamageFall, 12); }