Skip to content

Commit

Permalink
- fixed badly resolved merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 11, 2021
1 parent 64b6729 commit cdacf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/games/blood/src/ai.cpp
Expand Up @@ -1660,7 +1660,7 @@ void aiProcessDudes(void)
if (pXSprite->aiState->moveFunc)
pXSprite->aiState->moveFunc(actor);

if (pXSprite->aiState->thinkFunc && (gFrameCount & 3) == (actor->GetIndex() & 3)) // ouch, ouch! :(
if (pXSprite->aiState->thinkFunc && (gFrameCount & 3) == (pSprite->index & 3)) // ouch, ouch! :(
pXSprite->aiState->thinkFunc(actor);
}

Expand Down

0 comments on commit cdacf8e

Please sign in to comment.